[Fusionforge-commits] r11467 - trunk/src/common/forum

Alain Peyrat aljeux at libremir.placard.fr.eu.org
Mon Nov 8 18:39:40 CET 2010


Author: aljeux
Date: 2010-11-08 18:39:40 +0100 (Mon, 08 Nov 2010)
New Revision: 11467

Modified:
   trunk/src/common/forum/ForumAdmin.class.php
Log:
Prefer explode to split

Modified: trunk/src/common/forum/ForumAdmin.class.php
===================================================================
--- trunk/src/common/forum/ForumAdmin.class.php	2010-11-08 17:39:34 UTC (rev 11466)
+++ trunk/src/common/forum/ForumAdmin.class.php	2010-11-08 17:39:40 UTC (rev 11467)
@@ -362,7 +362,7 @@
 			$msgids = getStringFromRequest("msgids");//the message ids to update
 			$doaction = getArrayFromRequest("doaction"); //the actions for the messages
 			
-			$msgids = split(",",$msgids);
+			$msgids = explode(",",$msgids);
 			array_pop($msgids);//this last one is empty
 			
 			/*if ($this->isGroupAdmin()) {




More information about the Fusionforge-commits mailing list