Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
mahara
mahara
Commits
ac0c8794
Commit
ac0c8794
authored
May 07, 2009
by
Nigel McNie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgrade to install the HTML export plugin, and LEAP export/import plugins.
parent
bfc4c85f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
htdocs/lib/db/upgrade.php
htdocs/lib/db/upgrade.php
+12
-0
htdocs/lib/version.php
htdocs/lib/version.php
+1
-1
No files found.
htdocs/lib/db/upgrade.php
View file @
ac0c8794
...
...
@@ -1038,6 +1038,18 @@ function xmldb_core_upgrade($oldversion=0) {
create_table
(
$table
);
}
if
(
$oldversion
<
2009050700
)
{
if
(
$data
=
check_upgrades
(
'export.html'
))
{
upgrade_plugin
(
$data
);
}
if
(
$data
=
check_upgrades
(
'export.leap'
))
{
upgrade_plugin
(
$data
);
}
if
(
$data
=
check_upgrades
(
'import.leap'
))
{
upgrade_plugin
(
$data
);
}
}
return
$status
;
}
...
...
htdocs/lib/version.php
View file @
ac0c8794
...
...
@@ -27,7 +27,7 @@
defined
(
'INTERNAL'
)
||
die
();
$config
=
new
StdClass
;
$config
->
version
=
20090
42
70
1
;
$config
->
version
=
20090
50
70
0
;
$config
->
release
=
'1.2.0alpha2dev'
;
$config
->
minupgradefrom
=
2008040200
;
$config
->
minupgraderelease
=
'1.0.0 (release tag 1.0.0_RELEASE)'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment