! -> Note
$ -> Affected files
+14-Jan-2009 Joe Hunt
+! Page reload problem, progress bar in backup/restore,
+$ /admin/backups.php
+ /admin/display_prefs.php
+ /includes/lang/language.php
+
12-Jan-2009 Joe Hunt
! Updating install and update helpers
$ install.html
echo "
<script language='javascript'>
function createBackup() {
+ progbar();
ext = document.forms[0].cmb_comp.options[document.forms[0].cmb_comp.selectedIndex].value
comm = document.forms[0].comments.value
document.location.replace('backups.php?c=g&comp='+ext+'&comm='+comm)
}
function restoreBackup() {
+ progbar();
pFilename = document.forms[0].cmb_backups.options[document.forms[0].cmb_backups.selectedIndex].value
document.location.replace('backups.php?c=r&fn='+pFilename)
}
alert('" . _("Please select a file to upload.") . "')
return
}
+ progbar();
document.forms[0].action='backups.php?c=u&fn=' + document.forms[0].uploadfile.value
document.forms[0].submit()
}
$_POST['theme'], $_POST['page_size'], check_value('show_hints'),
$_POST['profile'], check_value('rep_popup'), (int)($_POST['query_size']), check_value('graphic_links'));
- language::set_language($_POST['language']);
+ if ($_SESSION['language'] != $_POST['language'])
+ language::set_language($_POST['language']);
flush_dir($comp_path.'/'.user_company().'/js_cache');
if (user_theme() != $theme)
- reload_page("");
+ //reload_page("");
+ meta_forward($_SERVER['PHP_SELF']);
display_notification_centered(_("Display settings have been updated."));
}
<?php
-
+/**********************************************************************
+ Copyright (C) 2008 FrontAccounting, LLC.
+ Released under the terms of the GNU Affero General Public License,
+ AGPL, as published by the Free Software Foundation, either version
+ 3 of the License, or (at your option) any later version.
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ See the License here <http://www.gnu.org/licenses/agpl-3.0.html>.
+***********************************************************************/
if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_to_root']))
die("Restricted access");
include_once($path_to_root . "/lang/installed_languages.inc");
$locale = $path_to_root . "/lang/" . $_SESSION['language']->code . "/locale.inc";
// check id file exists only once for session
$_SESSION['language']->is_locale_file = file_exists($locale);
- reload_page("");
+ //reload_page("");
+ meta_forward($_SERVER['PHP_SELF']);
}
}
{
get_text::set_var($key,$value);
}
-
+/*
function reload_page($msg)
{
// header("Location: $_SERVER['PHP_SELF']."");
echo "</body>";
echo "</html>";
}
-
+*/
?>
\ No newline at end of file