[Weberp-svn] SF.net SVN: weberp:[7762] trunk
Brought to you by:
sotandeka,
tim_schofield
From: <tim...@us...> - 2011-08-15 12:29:16
|
Revision: 7762 http://weberp.svn.sourceforge.net/weberp/?rev=7762&view=rev Author: tim_schofield Date: 2011-08-15 12:29:09 +0000 (Mon, 15 Aug 2011) Log Message: ----------- Update page securities for new scripts Modified Paths: -------------- trunk/includes/session.inc Added Paths: ----------- trunk/sql/mysql/updates/90.php Modified: trunk/includes/session.inc =================================================================== --- trunk/includes/session.inc 2011-08-15 09:20:21 UTC (rev 7761) +++ trunk/includes/session.inc 2011-08-15 12:29:09 UTC (rev 7762) @@ -13,7 +13,7 @@ header('Location:' . $rootpath . '/install/index.php'); } include($PathPrefix . 'config.php'); -$DBVersion=89; +$DBVersion=90; if (isset($SessionSavePath)){ session_save_path($SessionSavePath); } Added: trunk/sql/mysql/updates/90.php =================================================================== --- trunk/sql/mysql/updates/90.php (rev 0) +++ trunk/sql/mysql/updates/90.php 2011-08-15 12:29:09 UTC (rev 7762) @@ -0,0 +1,11 @@ +<?php + +/* Include the new script for printing quotations in Portrait + */ + +InsertRecord('pagesecurity', array('script', 'security'), array('GLJournalInquiry.php',10), array('script', 'security'), array('GLJournalInquiry.php',10), $db); +InsertRecord('pagesecurity', array('script', 'security'), array('PDFGLJournal.php',10), array('script', 'security'), array('PDFGLJournal.php',10), $db); + +UpdateDBNo(90, $db); + +?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |