mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 14:03:52 +01:00
MDL-17458 fixed some buttons and upgrade strings
This commit is contained in:
parent
380d71fd1a
commit
1c82b3f2d9
@ -241,13 +241,7 @@
|
||||
print_string('langpackwillbeupdated', 'admin');
|
||||
print_box_end();
|
||||
}
|
||||
echo '<form action="index.php"><div>';
|
||||
echo '<input type="hidden" name="confirmupgrade" value="1" />';
|
||||
echo '<input type="hidden" name="confirmrelease" value="1" />';
|
||||
echo '</div>';
|
||||
echo '<div class="continuebutton">';
|
||||
echo '<br /><br /><input type="submit" value="'.get_string('continue').'" /></div>';
|
||||
echo '</form>';
|
||||
print_continue('index.php?confirmupgrade=1&confirmrelease=1');
|
||||
}
|
||||
|
||||
print_footer('none');
|
||||
@ -266,13 +260,7 @@
|
||||
echo '<div class="continuebutton">';
|
||||
print_single_button('index.php', array('confirmupgrade' => 1, 'confirmrelease' => 1), get_string('reload'), 'get');
|
||||
echo '</div><br />';
|
||||
echo '<form action="index.php"><div>';
|
||||
echo '<input type="hidden" name="confirmupgrade" value="1" />';
|
||||
echo '<input type="hidden" name="confirmrelease" value="1" />';
|
||||
echo '<input type="hidden" name="confirmplugincheck" value="1" />';
|
||||
echo '</div>';
|
||||
echo '<br /><br /><input type="submit" value="'.get_string('continue').'" /></div>';
|
||||
echo '</form>';
|
||||
print_continue('index.php?confirmupgrade=1&confirmrelease=1&confirmplugincheck=1');
|
||||
print_footer('none');
|
||||
die();
|
||||
|
||||
|
@ -805,6 +805,7 @@ Are you sure you want to upgrade this server to this version?';
|
||||
$string['upgradetimedout'] = 'Upgrade timed out, please restart the upgrade.';
|
||||
$string['upgradingdata'] = 'Upgrading data';
|
||||
$string['upgradinglogs'] = 'Upgrading logs';
|
||||
$string['upgradingversion'] = 'Upgrading to new version';
|
||||
$string['uploaduserspreview'] = 'Upload users preview';
|
||||
$string['uploadusersresult'] = 'Upload users results';
|
||||
$string['upwards'] = 'upwards';
|
||||
|
@ -866,7 +866,7 @@ function upgrade_log_start($preinstall=false) {
|
||||
|
||||
} else {
|
||||
if (!CLI_SCRIPT and !defined('HEADER_PRINTED')) {
|
||||
$strupgrade = get_string('upgrade');
|
||||
$strupgrade = get_string('upgradingversion', 'admin');
|
||||
|
||||
print_header($strupgrade, $strupgrade,
|
||||
build_navigation(array(array('name' => $strupgrade, 'link' => null, 'type' => 'misc'))), '',
|
||||
|
@ -6,7 +6,7 @@
|
||||
// This is compared against the values stored in the database to determine
|
||||
// whether upgrades should be performed (see lib/db/*.php)
|
||||
|
||||
$version = 2009011101; // YYYYMMDD = date of the last version bump
|
||||
$version = 2009011301; // YYYYMMDD = date of the last version bump
|
||||
// XX = daily increments
|
||||
|
||||
$release = '2.0 dev (Build: 20090113)'; // Human-friendly version name
|
||||
|
Loading…
x
Reference in New Issue
Block a user