1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-27 18:00:30 +02:00

Small fix when no plugins found.

This commit is contained in:
CaMer0n
2009-09-10 15:39:09 +00:00
parent 83a50ef2d3
commit 2dec8b3376

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_admin/plugin.php,v $ | $Source: /cvs_backup/e107_0.8/e107_admin/plugin.php,v $
| $Revision: 1.42 $ | $Revision: 1.43 $
| $Date: 2009-09-10 15:24:57 $ | $Date: 2009-09-10 15:39:09 $
| $Author: e107coders $ | $Author: e107coders $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
@@ -718,7 +718,15 @@ class pluginManager{
<tbody> <tbody>
"; ";
$text .= $pluginRenderPlugin; if($pluginRenderPlugin)
{
$text .= $pluginRenderPlugin;
}
else
{
//TODO LANs
$text .= "<tr><td class='center' colspan='".count($this->fields)."'>No plugins Found</td></tr>";
}
$text .= " $text .= "
</tbody> </tbody>