|
From: SourceForge.net <no...@so...> - 2006-02-28 02:16:27
|
Bugs item #1440060, was opened at 2006-02-27 21:16 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=430840&aid=1440060&group_id=41586 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Core - Core Group: XOOPS 2.2.x Status: Open Resolution: None Priority: 5 Submitted By: dejadingo (dejadingo) Assigned to: Nobody/Anonymous (nobody) Summary: xoops_version.php errors in Xoops2.2.3/2.2.4 Initial Comment: modules/system/xoops_version.php line 199 $modversion['profile']['field'][1]['options'] = array('nest'=>_NESTED, 'flat'=>_FLAT, 'thread'=>_THREADED); should be: $modversion['profile']['field'][1]['options'] = array(_NESTED => 'nest', _FLAT => 'flat', _THREADED => 'thread'); ------------- modules/system/xoops_version.php line 687 $modversion['config'][38]['options'] = array("_MD_AM_METAOGEN" => "general", "_MD_AM_METAO14YRS" => "14 years", "_MD_AM_METAOREST" => "restricted", "_MD_AM_METAOMAT", "mature"); should be $modversion['config'][38]['options'] = array("_MD_AM_METAOGEN" => "general", "_MD_AM_METAO14YRS" => "14 years", "_MD_AM_METAOREST" => "restricted", "_MD_AM_METAOMAT" => "mature"); ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=430840&aid=1440060&group_id=41586 |