From dbd0674494e7d61c07ea2d38c0e43ec8a85e71cd Mon Sep 17 00:00:00 2001 From: mcfly Date: Mon, 22 Dec 2008 12:54:30 +0000 Subject: [PATCH] Remove single quote from title --- e107_admin/admin.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/e107_admin/admin.php b/e107_admin/admin.php index 3d911efe3..95461192e 100644 --- a/e107_admin/admin.php +++ b/e107_admin/admin.php @@ -11,9 +11,9 @@ | GNU General Public License (http://gnu.org). | | $Source: /cvs_backup/e107_0.8/e107_admin/admin.php,v $ -| $Revision: 1.6 $ -| $Date: 2008-12-07 21:41:04 $ -| $Author: e107steved $ +| $Revision: 1.7 $ +| $Date: 2008-12-22 12:54:30 $ +| $Author: mcfly_e107 $ +----------------------------------------------------------------------------+ */ require_once('../class2.php'); @@ -307,7 +307,7 @@ function getPluginLinks($iconSize = E_16_PLUGMANAGER, $linkStyle = 'adminb') $eplug_conffile = $readFile['administration']['configFile']; $eplug_icon_small = $plugin_path.'/'.$readFile['administration']['iconSmall']; $eplug_icon = $plugin_path.'/'.$readFile['administration']['icon']; - $eplug_caption = $tp->toHTML($readFile['description'],FALSE,"defs, emotes_off"); + $eplug_caption = str_replace("'", '', $tp->toHTML($readFile['description'], FALSE, 'defs, emotes_off')); } } elseif (is_readable(e_PLUGIN.$plugin_path."/plugin.php"))