Rewritten upgrade procedures, added fa_patch class, utf8 collation can be set before...
[fa-stable.git] / admin / view / view_upgrade_log.php
diff --git a/admin/view/view_upgrade_log.php b/admin/view/view_upgrade_log.php
new file mode 100644 (file)
index 0000000..e1cbd0f
--- /dev/null
@@ -0,0 +1,38 @@
+<?php
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       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/gpl-3.0.html>.
+***********************************************************************/
+$page_security = 'SA_SOFTWAREUPGRADE';
+$path_to_root = "../..";
+include_once($path_to_root . "/includes/session.inc");
+include_once($path_to_root . "/includes/packages.inc");
+
+page(_($help_context = "Log View"), true);
+
+include_once($path_to_root . "/includes/ui.inc");
+
+if (!isset($_GET['id'])) 
+{
+       /*Script was not passed the correct parameters */
+       display_note(_("The script must be called with a valid company number."));
+       end_page();
+}
+
+display_heading(sprintf(_("Upgrade log for company '%s'"), $_GET['id']));
+br();
+  start_table();
+       start_row();
+
+       $log = strtr(file_get_contents($path_to_root.'/tmp/upgrade.'.$_GET['id'].'.log'), 
+                 array('Fatal error' => 'Fatal  error')); // prevent misinterpretation in output_handler
+    label_cells(null, nl2br(html_specials_encode($log)));
+       end_row();
+  end_table(1);
+end_page(true);