Author: danydb Date: 2013-08-13 01:16:13 +0200 (Tue, 13 Aug 2013) New Revision: 5341
Modified: phpcompta/trunk/ phpcompta/trunk/html/ajax_card.php phpcompta/trunk/include/constant.php Log: Merged revisions 5338-5339 via svnmerge from svn+ssh://[email protected]/svn/phpcompta/tags/rel660 ........ r5338 | danydb | 2013-08-04 21:12:29 +0200 (dim., 04 ao?\195?\187t 2013) | 1 line BUG cannot display list of card ........ r5339 | danydb | 2013-08-08 23:50:38 +0200 (jeu., 08 ao?\195?\187t 2013) | 1 line PDF problem, need to increase memory ........ Property changes on: phpcompta/trunk ___________________________________________________________________ Name: svnmerge-integrated - /phpcompta/tags/rel660:1-5332 + /phpcompta/tags/rel660:1-5340 Modified: phpcompta/trunk/html/ajax_card.php =================================================================== --- phpcompta/trunk/html/ajax_card.php 2013-08-09 11:16:30 UTC (rev 5340) +++ phpcompta/trunk/html/ajax_card.php 2013-08-12 23:16:13 UTC (rev 5341) @@ -367,7 +367,7 @@ } /* We limit the search to MAX_SEARCH_CARD records */ $sql=$sql.' order by vw_name limit '.MAX_SEARCH_CARD; - + $a=$cn->get_array($sql); for($i=0;$i<count($a);$i++) { $array[$i]['quick_code']=$a[$i]['quick_code']; Modified: phpcompta/trunk/include/constant.php =================================================================== --- phpcompta/trunk/include/constant.php 2013-08-09 11:16:30 UTC (rev 5340) +++ phpcompta/trunk/include/constant.php 2013-08-12 23:16:13 UTC (rev 5341) @@ -44,7 +44,7 @@ ini_set ('session.use_only_cookies','on'); ini_set ('magic_quotes_gpc','off'); ini_set ('max_execution_time',240); -ini_set ('memory_limit','20M'); +ini_set ('memory_limit','256M'); ini_set ('default_charset',"UTF-8"); @ini_set ('session.use_trans_sid','on'); @session_start(); @@ -60,13 +60,10 @@ $g_failed="<span style=\"font-size:18px;color:red\">✖</span>"; $g_succeed="<span style=\"font-size:18px;color:green\">✓</span>"; /* uncomment for development */ -/* define ('SVNINFO',5900); define ("DEBUG",true); -*/ $version_phpcompta=SVNINFO; -define ("DEBUG",false); /* define ('SVNINFO',5015); * $version_phpcompta=SVNINFO; * define ("DEBUG",true); --- PhpCompta est un logiciel de comptabilité libre en ligne (full web) Projet opensource http://www.phpcompta.eu _______________________________________________ Phpcompta est un logiciel libre de comptabilité en ligne (http://www.phpcompta.eu) Phpcompta-dev mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/phpcompta-dev
