|
From: <be...@us...> - 2014-06-27 09:27:14
|
Revision: 12656
http://sourceforge.net/p/xoops/svn/12656
Author: beckmi
Date: 2014-06-27 09:27:07 +0000 (Fri, 27 Jun 2014)
Log Message:
-----------
fix for array issue in pm/viempmsg.php (Roby73/mamba)
Modified Paths:
--------------
XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt
XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/pm/viewpmsg.php
Modified: XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt 2014-06-26 21:37:18 UTC (rev 12655)
+++ XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt 2014-06-27 09:27:07 UTC (rev 12656)
@@ -1,6 +1,15 @@
XOOPS 2.5.x Changelog (Language changes: see: /docs/lang_diff.txt)
===============================
+2014-06-14: Version 2.5.7 Final (Patch)
+===============================
+
+- Updating docu for the correct version of tablesorter (mamba)
+- Fix path specified for include (rgriffith, mamba)
+- added mainfile.php to /extras for use on servers where write to root is not possible (rgriffith)
+- fix for array issue in pm/viempmsg.php (Roby73/mamba)
+
+===============================
2014/06/14: Version 2.5.7 Final
===============================
- updated XoopsMediaUploader to use system memory values from php.ini, and to offer random file names (mamba/luciorota/zyspec)
Modified: XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/pm/viewpmsg.php
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/pm/viewpmsg.php 2014-06-26 21:37:18 UTC (rev 12655)
+++ XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/pm/viewpmsg.php 2014-06-27 09:27:07 UTC (rev 12656)
@@ -44,7 +44,7 @@
} else {
$clean_msg_id = json_decode($_POST['msg_id'], true, 2);
if (!empty($clean_msg_id)) {
- $clean_msg_id = array_map("intval", $clean_msg_id);
+ $clean_msg_id = array_map("intval", (array) $clean_msg_id);
}
$size = count($clean_msg_id);
$msg =& $clean_msg_id;
|