|
From: <be...@us...> - 2013-09-14 16:40:21
|
Revision: 12043
http://sourceforge.net/p/xoops/svn/12043
Author: beckmi
Date: 2013-09-14 16:40:18 +0000 (Sat, 14 Sep 2013)
Log Message:
-----------
Bug fixes (missing index in Profile, wrong name in email notification template)
Modified Paths:
--------------
XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt
XoopsCore/branches/2.5.x/2.5.7/htdocs/language/english/mail_template/default_notify.tpl
XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/profile/userinfo.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 15:28:17 UTC (rev 12042)
+++ XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt 2013-09-14 16:40:18 UTC (rev 12043)
@@ -4,7 +4,7 @@
2013/05/08: Version 2.5.7 Beta 1
===============================
Bugfixes:
-- ID: 1269 Block template file will not updated after update the module (Irmtfan)
+- ID: 1269 Block template file will not updated after update the module (irmtfan)
- ID: 1143 (old ID 430840) class/module.errorhandler.php (uberrookie/zyspec)
- ID: 1287 assigning "static" to various class methods (wishcraft/mamba)
- ID: 1285 check if session exists before attempting to start a new one (wishcraft)
@@ -28,7 +28,12 @@
- adding some missing generic default fonts (mamba)
- removing some unreachable statements (mamba)
- replacing deprecated HTML tags (mamba)
+- bug in commentrenderer.php (Roby73/irmtfan)
+- added missing info about new language constants in Fast Comments (irmtfan/mamba)
+- fixed Undefined index: uid in file /modules/profile/userinfo.php line 24 (cesag/mamba)
+- fixed template issue in email notifications (changed X_ITEM_TILE to X_ITEM_NAME) (alain01/slider84/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/language/english/mail_template/default_notify.tpl
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/htdocs/language/english/mail_template/default_notify.tpl 2013-09-14 15:28:17 UTC (rev 12042)
+++ XoopsCore/branches/2.5.x/2.5.7/htdocs/language/english/mail_template/default_notify.tpl 2013-09-14 16:40:18 UTC (rev 12043)
@@ -1,6 +1,6 @@
Hello {X_UNAME},
-The event {X_NOTIFY_EVENT} has occurred to the {X_ITEM_TYPE} "{X_ITEM_TILE}" you are monitoring in the {X_MODULE} module at our site.
+The event {X_NOTIFY_EVENT} has occurred to the {X_ITEM_TYPE} "{X_ITEM_NAME}" you are monitoring in the {X_MODULE} module at our site.
You can view the {X_ITEM_TYPE} here:
{X_ITEM_URL}
Modified: XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/profile/userinfo.php
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/profile/userinfo.php 2013-09-14 15:28:17 UTC (rev 12042)
+++ XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/profile/userinfo.php 2013-09-14 16:40:18 UTC (rev 12043)
@@ -21,7 +21,7 @@
include dirname(__FILE__) . DIRECTORY_SEPARATOR . 'header.php';
include_once $GLOBALS['xoops']->path('modules/system/constants.php');
-$uid = intval($_GET['uid']);
+$uid = isset($_GET['uid'])? intval($_GET['uid']):0;
if ($uid <= 0) {
if (is_object($GLOBALS['xoopsUser']) ) {
$uid = $GLOBALS['xoopsUser']->getVar('uid');
|