|
From: <be...@us...> - 2014-02-15 07:19:23
|
Revision: 12314
http://sourceforge.net/p/xoops/svn/12314
Author: beckmi
Date: 2014-02-15 07:19:16 +0000 (Sat, 15 Feb 2014)
Log Message:
-----------
added "module_status" to show together with module Version in Admin(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/system/admin/modulesadmin/main.php
XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/admin/modulesadmin/modulesadmin.php
XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/templates/admin/system_modules.html
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-02-15 02:33:36 UTC (rev 12313)
+++ XoopsCore/branches/2.5.x/2.5.7/docs/changelog.250.txt 2014-02-15 07:19:16 UTC (rev 12314)
@@ -5,14 +5,24 @@
===============================
Bugfixes:
- ID: 1143 (old ID 430840) class/module.errorhandler.php (uberrookie/zyspec)
+- ID: 1225 Restore user theme choice during "Remember me" processing. (rgriffith)
+- ID: 1226 Change value of clickable due to issues centering on CaricaFoto script (rgriffith)
- ID: 1227 Sorting bug in Profile module search (Zyspec)
+- ID: 1246 Fallback to english for admin theme language files if no language specific file exists (rgriffith)
+- ID: 1261 Fix as proposed by Irmtfan (irmtfan/rgriffith)
+- ID: 1268 reduce db load if XoopsFormSelectUser is called multiple times in a page load (rgriffith)
- ID: 1269 Block template file will not updated after update the module (irmtfan)
- ID: 1270 template issue in email notifications (changed X_ITEM_TILE to X_ITEM_NAME) (alain01/slider84/mamba)
-- ID: 1271 install last page no css/js (tarik)
+- ID: 1271 install last page no css/js (tarik/rgriffith))
+- ID: 1272 delete functions always return true (rgriffith)
- ID: 1273 template duplicate issue (irmtfan)
+- ID: 1274 prevent multiple inclusions of a module's xoops_version.php (irmtfan/rgriffith)
- ID: 1278 _AM_SENDMTOUSERS missed (Mowaffaq/mamba)
+- ID: 1281 initialize arrays as empty arrays rather than null (rgriffith)
- ID: 1285 check if session exists before attempting to start a new one (wishcraft)
- ID: 1287 assigning "static" to various class methods (wishcraft/mamba)
+- ID: 1291 xoops_getModuleOption() did not respect $dirname (rgriffith)
+- ID: 1382 add cleanup of unused avatar resources to admin maintenance page (rgriffith)
- reversing fix for potential lack of rendering css and javascript in Installer on the last screen by culex
@@ -40,10 +50,22 @@
- set minimum PHP version to 5.3.7 (mamba)
- added missing apostrophe corrections for Date types in CleanVars in /class/model/write.php
- added function escape to XoopsMySQLDatabase, needed for Formulize (jegelstaff)
+- added blank.gif images to ModuleAdmin icons (timgno)
+- addedd [soundcloud] BB code as supplied by (iHackCode/rgriffith)
+- fix for cancel button in javascript (currently it still entered the text, even if canceled) (mamba)
+- added "module_status" to show with module Version (mamba)
+- patch for input validation bypass issue reported by Tatane (tatane/rgriffith)
+- change default value for usercookie config to match change in 2.6.0. (rgriffith)
+- correct method used to determine the current effective language.(rgriffith)
+- fix errors "PHP Strict standards: Redefining already defined constructor" under PHP 5.5 (rgriffith)
+- fix to correctly load the CSS file into the header in ModuleAdmin (Bleekk, Alfred)
+- added "title" to buttons in DHTML Editor (mamba)
+- updated required PHP and XOOPS versions, module versions in modules (cesag/mamba)
+- added xBootstrap theme (UI/UX Team: Angelo Roja, Bleekk, Heyula)
-
Security fixes
- - XSS issues reported by Mehdi Dadkhah (rgriffith)
+- XSS issues reported by Mehdi Dadkhah (rgriffith)
+- Fix potential security issues reported by Pedro Ribeiro of Agile Information Security (rgriffith)
Updated:
- jGrowl to 1.2.13 (mamba)
@@ -51,6 +73,7 @@
- HTML Purifier to 4.5.0 (mamba)
- Smarty to 2.6.28 (mamba)
- TinyMCE to 3.5.10 (mamba)
+ - prototype.js to 1.7.1, Aug 2012 (rgriffith)
===============================
2013/04/21: Version 2.5.6 Final
Modified: XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/admin/modulesadmin/main.php
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/admin/modulesadmin/main.php 2014-02-15 02:33:36 UTC (rev 12313)
+++ XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/admin/modulesadmin/main.php 2014-02-15 07:19:16 UTC (rev 12314)
@@ -91,6 +91,7 @@
$listed_mods[$i]['image'] = $module->getInfo('image');
$listed_mods[$i]['adminindex'] = $module->getInfo('adminindex');
$listed_mods[$i]['version'] = round($module->getVar('version') / 100, 2);
+ $listed_mods[$i]['module_status'] = $module->getInfo('module_status');
$listed_mods[$i]['last_update'] = formatTimestamp($module->getVar('last_update'), 'm');
$listed_mods[$i]['author'] = $module->getInfo('author');
$listed_mods[$i]['credits'] = $module->getInfo('credits');
@@ -169,6 +170,7 @@
$toinstall_mods[$i]['dirname'] = $module->getInfo('dirname');
$toinstall_mods[$i]['image'] = $module->getInfo('image');
$toinstall_mods[$i]['version'] = round($module->getInfo('version'), 2);
+ $toinstall_mods[$i]['module_status'] = $module->getInfo('module_status');
$toinstall_mods[$i]['author'] = $module->getInfo('author');
$toinstall_mods[$i]['credits'] = $module->getInfo('credits');
$toinstall_mods[$i]['license'] = $module->getInfo('license');
@@ -534,7 +536,7 @@
$msgs[] = '<img src="' . XOOPS_URL . '/modules/' . $dirname . '/' . trim($module->getInfo('image'))
. '" alt="" />';
}
- $msgs[] = '<strong>' . _VERSION . ':</strong> ' . $module->getInfo('version');
+ $msgs[] = '<strong>' . _VERSION . ':</strong> ' . $module->getInfo('version') . ' ' . $module->getInfo('module_status');
if ($module->getInfo('author') != false && trim($module->getInfo('author')) != '') {
$msgs[]
= '<strong>' . _AUTHOR . ':</strong> ' . $myts->htmlspecialchars(trim($module->getInfo('author')));
@@ -1101,7 +1103,7 @@
$msgs[] = sprintf(_AM_SYSTEM_MODULES_OKUPD, '<strong>' . $module->getVar('name', 's') . '</strong>');
$msgs[] = '</div></div>';
$msgs[] = '<div class="center"><a href="admin.php?fct=modulesadmin">' . _AM_SYSTEM_MODULES_BTOMADMIN
- . '</a> | <a href="' . XOOPS_URL . '/modules/' . $module->getInfo('dirname', 'e') . '/' . $module->getInfo('adminindex') . '">' . _AM_SYSTEM_MODULES_ADMIN
+ . '</a> | <a href="' . XOOPS_URL . '/modules/' . $module->getInfo('dirname', 'e') . '/' . $module->getInfo('adminindex') . '">' . _AM_SYSTEM_MODULES_ADMIN
. '</a></div>';
foreach ($msgs as $msg) {
echo $msg . '<br />';
Modified: XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/admin/modulesadmin/modulesadmin.php
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/admin/modulesadmin/modulesadmin.php 2014-02-15 02:33:36 UTC (rev 12313)
+++ XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/admin/modulesadmin/modulesadmin.php 2014-02-15 07:19:16 UTC (rev 12314)
@@ -57,7 +57,7 @@
if ($module->getInfo('image') != false && trim($module->getInfo('image')) != '') {
$msgs[] ='<a href="'.XOOPS_URL.'/modules/'.$module->getInfo('dirname', 'e').'/'.$module->getInfo('adminindex').'"><img src="' . XOOPS_URL . '/modules/' . $dirname . '/' . trim($module->getInfo('image')) . '" alt="" /></a>';
}
- $msgs[] ='<strong>' . _VERSION . ':</strong> ' . $module->getInfo('version');
+ $msgs[] ='<strong>' . _VERSION . ':</strong> ' . $module->getInfo('version') . ' ' . $module->getInfo('module_status');
if ($module->getInfo('author') != false && trim($module->getInfo('author')) != '') {
$msgs[] ='<strong>' . _AUTHOR . ':</strong> ' . htmlspecialchars(trim($module->getInfo('author')));
}
@@ -502,7 +502,7 @@
if ($module->getInfo('image') != false && trim($module->getInfo('image')) != '') {
$msgs[] ='<img src="' . XOOPS_URL . '/modules/' . $dirname . '/' . trim($module->getInfo('image')) . '" alt="" />';
}
- $msgs[] ='<strong>' . _VERSION . ':</strong> ' . $module->getInfo('version');
+ $msgs[] ='<strong>' . _VERSION . ':</strong> ' . $module->getInfo('version'). ' ' . $module->getInfo('module_status');
if ($module->getInfo('author') != false && trim($module->getInfo('author')) != '') {
$msgs[] ='<strong>' . _AUTHOR . ':</strong> ' . htmlspecialchars(trim($module->getInfo('author')));
}
@@ -749,7 +749,7 @@
if ($module->getInfo('image') != false && trim($module->getInfo('image')) != '') {
$msgs[] ='<img src="' . XOOPS_URL . '/modules/' . $module->getVar('dirname') . '/' . trim($module->getInfo('image')) . '" alt="" />';
}
- $msgs[] ='<strong>' . _VERSION . ':</strong> ' . $module->getInfo('version');
+ $msgs[] ='<strong>' . _VERSION . ':</strong> ' . $module->getInfo('version'). ' ' . $module->getInfo('module_status');
if ($module->getInfo('author') != false && trim($module->getInfo('author')) != '') {
$msgs[] = '<strong>' . _AUTHOR . ':</strong> ' . htmlspecialchars(trim($module->getInfo('author')));
}
Modified: XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/templates/admin/system_modules.html
===================================================================
--- XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/templates/admin/system_modules.html 2014-02-15 02:33:36 UTC (rev 12313)
+++ XoopsCore/branches/2.5.x/2.5.7/htdocs/modules/system/templates/admin/system_modules.html 2014-02-15 07:19:16 UTC (rev 12314)
@@ -49,7 +49,7 @@
<{if $row.warning_update == 1}>
<strong class="red"><{$row.version}></strong>
<{else}>
- <{$row.version}>
+ <{$row.version}> <{$row.module_status}>
<{/if}>
</td>
<td><{$row.last_update}></td>
@@ -101,7 +101,7 @@
<{if $row.warning_update == 1}>
<a class="tooltip maxi" style="color:red;" href="<{$xoops_url}>/modules/system/admin.php?fct=modulesadmin&op=update&module=<{$row.dirname}>" title="<{$smarty.const._AM_SYSTEM_MODULES_UPDATE}>"><{$row.version}></a><br /><{$smarty.const._AM_SYSTEM_MODULES_UPDATE}>
<{else}>
- <{$row.version}>
+ <{$row.version}> <{$row.module_status}>
<{/if}>
</td>
<td><{$row.last_update}></td>
@@ -154,7 +154,7 @@
<{if $row.warning_update == 1}>
<a class="tooltip maxi" style="color:red;" href="<{$xoops_url}>/modules/system/admin.php?fct=modulesadmin&op=update&module=<{$row.dirname}>" title="<{$smarty.const._AM_SYSTEM_MODULES_UPDATE}>"><{$row.version}></a><br /><{$smarty.const._AM_SYSTEM_MODULES_UPDATE}>
<{else}>
- <{$row.version}>
+ <{$row.version}> <{$row.module_status}>
<{/if}>
</td>
<td><{$row.last_update}></td>
@@ -221,7 +221,7 @@
<span class="spacer bold"><{$row.name}></span>
</div>
</td>
- <td><{$row.version}></td>
+ <td><{$row.version}> <{$row.module_status}></td>
<td class="xo-modsimages">
<a class="tooltip" href="<{$xoops_url}>/modules/system/admin.php?fct=modulesadmin&op=install&module=<{$row.dirname}>" title="<{$smarty.const._AM_SYSTEM_MODULES_INSTALL}>">
<img src="<{xoAdminIcons install.png}>" alt="<{$smarty.const._AM_SYSTEM_MODULES_INSTALL}>" />
@@ -243,7 +243,7 @@
</td>
<td>
<ul class="xo-moduleinfos">
- <li><span class="bold"><{$smarty.const._VERSION}></span> : <{$row.version}></li>
+ <li><span class="bold"><{$smarty.const._VERSION}></span> : <{$row.version}> <{$row.module_status}></li>
<li><span class="bold"><{$smarty.const._AUTHOR}></span> : <{$row.author}></li>
<li><span class="bold"><{$smarty.const._CREDITS}></span> : <{$row.credits}></li>
<li><span class="bold"><{$smarty.const._LICENCE}></span> : <{$row.license}> </li>
@@ -254,4 +254,4 @@
<p><{$row.description}></p>
</div>
<{/foreach}>
-<!--Pop-pup-->
\ No newline at end of file
+<!--Pop-pup-->
|