|
From: <be...@us...> - 2013-09-14 12:53:20
|
Revision: 12040
http://sourceforge.net/p/xoops/svn/12040
Author: beckmi
Date: 2013-09-14 12:53:17 +0000 (Sat, 14 Sep 2013)
Log Message:
-----------
removing some unreachable statements
Modified Paths:
--------------
XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt
XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/class/thumbs/phpthumb.bmp.php
XoopsCore/branches/2.5.x/2.5.7/htdocs/user.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 2013-09-14 12:50:52 UTC (rev 12039)
+++ XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt 2013-09-14 12:53:17 UTC (rev 12040)
@@ -24,8 +24,8 @@
- fixed missing check on variable in userinfo.php (cesag/mamba)
- replaced extract($_POST) in /include/comment_delete.php with filters (mamba)
- adding some missing generic default fonts (mamba)
+- removing some unreachable statements (mamba)
-
Updated:
- jGrowl to 1.2.13 (mamba)
- jQuery Form to 3.42.0 (mamba)
Modified: XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/class/thumbs/phpthumb.bmp.php
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/class/thumbs/phpthumb.bmp.php 2013-09-14 12:50:52 UTC (rev 12039)
+++ XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/class/thumbs/phpthumb.bmp.php 2013-09-14 12:53:17 UTC (rev 12040)
@@ -783,7 +783,7 @@
return true;
}
- return false;
+// return false;
}
function BMPcompressionWindowsLookup($compressionid)
Modified: XoopsCore/branches/2.5.x/2.5.7/htdocs/user.php
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/htdocs/user.php 2013-09-14 12:50:52 UTC (rev 12039)
+++ XoopsCore/branches/2.5.x/2.5.7/htdocs/user.php 2013-09-14 12:53:17 UTC (rev 12040)
@@ -109,7 +109,7 @@
if (empty($id)) {
redirect_header('index.php', 1, '');
- exit();
+// exit();
}
$member_handler =& xoops_gethandler('member');
$thisuser =& $member_handler->getUser($id);
|