[ postfixadmin-Bugs-3060495 ] split() is deprecated
Brought to you by:
christian_boltz,
gingerdog
|
From: SourceForge.net <no...@so...> - 2011-03-17 22:47:00
|
Bugs item #3060495, was opened at 2010-09-06 18:27 Message generated for change (Comment added) made by christian_boltz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3060495&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Christian Boltz (christian_boltz) Assigned to: Nobody/Anonymous (nobody) Summary: split() is deprecated Initial Comment: split() is deprecated in PHP 5.3. It is used in - functions.inc.php line 1186 - »$result = split('{|}', $pw_db, 3);« - upgrade.php - 4 times »$all_sql = split("\n", trim("« - several files in tests/simpletest/ The problem is that the use in functions.inc.php causes the login to fail: http://sourceforge.net/projects/postfixadmin/forums/forum/676076/topic/3840323 Workaround: add the following line to config.local.php: ini_set('display_errors', 0); ---------------------------------------------------------------------- >Comment By: Christian Boltz (christian_boltz) Date: 2011-03-17 23:47 Message: simpletest was updated by GingerDog in r1017 (trunk) ---------------------------------------------------------------------- Comment By: Christian Boltz (christian_boltz) Date: 2010-12-16 01:37 Message: upgrade.php is fixed in SVN trunk r894 Remaining: several files in tests/simpletest/* - David, that's something for you (new upstream version of simpletest available?) ---------------------------------------------------------------------- Comment By: Christian Boltz (christian_boltz) Date: 2010-12-16 00:23 Message: functions.inc.php is fixed in SVN trunk r892. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3060495&group_id=191583 |