|
From: <ir...@us...> - 2013-08-27 14:20:40
|
Revision: 11983
http://sourceforge.net/p/xoops/svn/11983
Author: irmtfan
Date: 2013-08-27 14:20:37 +0000 (Tue, 27 Aug 2013)
Log Message:
-----------
Notice: Undefined index: fct in file /modules/newbb/xoops_version.php line 767 (Cesag)
Modified Paths:
--------------
XoopsModules/newbb/branches/irmtfan/newbb/changelog-rev10109.txt
XoopsModules/newbb/branches/irmtfan/newbb/xoops_version.php
Modified: XoopsModules/newbb/branches/irmtfan/newbb/changelog-rev10109.txt
===================================================================
--- XoopsModules/newbb/branches/irmtfan/newbb/changelog-rev10109.txt 2013-08-27 10:08:37 UTC (rev 11982)
+++ XoopsModules/newbb/branches/irmtfan/newbb/changelog-rev10109.txt 2013-08-27 14:20:37 UTC (rev 11983)
@@ -1,3 +1,7 @@
+date 2013-08-27
+===================================
+1- bug fix: Notice: Undefined index: fct in file /modules/newbb/xoops_version.php line 767 (Cesag)
+
date 2013-08-24
===================================
1- bug fix: check if xoops poll module is available in newbb/admin/index.php (Cesag)
Modified: XoopsModules/newbb/branches/irmtfan/newbb/xoops_version.php
===================================================================
--- XoopsModules/newbb/branches/irmtfan/newbb/xoops_version.php 2013-08-27 10:08:37 UTC (rev 11982)
+++ XoopsModules/newbb/branches/irmtfan/newbb/xoops_version.php 2013-08-27 14:20:37 UTC (rev 11983)
@@ -764,7 +764,7 @@
is_object($GLOBALS["xoopsModule"]) && "system" == $GLOBALS["xoopsModule"]->getVar("dirname", "n")
&&
// current action
- $_REQUEST['fct'] == "preferences"
+ !empty($_REQUEST['fct']) && $_REQUEST['fct'] == "preferences"
);
xoops_loadLanguage('admin', $modversion['dirname']);
// if in pref AND click on save AND 'poll_module' != 0
|