X-Git-Url: http://git.sourceforge.jp/view?p=nucleus-jp%2Fnucleus-jp-ancient.git;a=blobdiff_plain;f=utf8%2Fnucleus%2Flibs%2Fshowlist.php;h=a0d13047d67663b5b9889da930c9a9d97ba416f1;hp=ff351f921eb8aac9aec219032b7ae6b0583a676d;hb=7a9ab741d74fc3e819af9b1e23a2bb6a28e00297;hpb=1abade2c6f1ef6acdea5b904d930649a83893898 diff --git a/utf8/nucleus/libs/showlist.php b/utf8/nucleus/libs/showlist.php index ff351f9..a0d1304 100644 --- a/utf8/nucleus/libs/showlist.php +++ b/utf8/nucleus/libs/showlist.php @@ -186,7 +186,6 @@ function listplug_table_pluginlist($template, $type) { echo _LIST_PLUGS_VER, ' ' , htmlspecialchars($plug->getVersion()) , '
'; if ($plug->getURL()) echo '',_LIST_PLUGS_SITE,'
'; -// echo ''.htmlspecialchars(shorten($plug->getURL(), 25, '...')),'
'; echo ''; echo ''; echo _LIST_PLUGS_DESC .'
'. encode_desc($plug->getDescription()); @@ -273,7 +272,7 @@ function listplug_plugOptionRow($current) { $meta = NucleusPlugin::getOptionMeta($current['typeinfo']); // only if it is not a hidden option write the controls to the page - if (@$meta['access'] != 'hidden') { + if ($meta['access'] != 'hidden') { echo '',htmlspecialchars($current['description']?$current['description']:$current['name']),''; echo ''; switch($current['type']) { @@ -298,7 +297,7 @@ function listplug_plugOptionRow($current) { case 'textarea': //$meta = NucleusPlugin::getOptionMeta($current['typeinfo']); echo ''; @@ -308,15 +307,15 @@ function listplug_plugOptionRow($current) { //$meta = NucleusPlugin::getOptionMeta($current['typeinfo']); echo ''; } - echo @$current['extra']; + echo $current['extra']; echo ''; } } @@ -371,8 +370,7 @@ function listplug_table_itemlist($template, $type) { echo " / " . _LISTS_DELETE . "
"; // evaluate amount of comments for the item $camount = $COMMENTS->amountComments(); - if ($camount>0) - { + if ($camount>0) { echo ""; echo "( " . sprintf(_LIST_ITEM_COMMENTS, $COMMENTS->amountComments())." )"; }