1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-09 16:17:14 +02:00

Use button instead of link to 'Configure'

This commit is contained in:
Cameron
2013-03-05 15:08:23 -08:00
parent bf990f2062
commit 591475199f

View File

@@ -1498,7 +1498,7 @@ class e107plugin
if ($this->plugConfigFile)
{
$text .= "&nbsp;<a href='".$this->plugConfigFile."'>[".LAN_CONFIGURE."]</a>";
$text .= "<br /><a class='btn btn-primary' href='".$this->plugConfigFile."'>".LAN_CONFIGURE."</a>";
}
$mes->addSuccess($text);
@@ -2314,7 +2314,7 @@ class e107plugin
$text .= (isset($eplug_done) ? "<br />{$eplug_done}" : "<br />".LAN_INSTALL_SUCCESSFUL);
if ($eplug_conffile)
{
$text .= "&nbsp;<a href='".e_PLUGIN.$eplug_folder."/".$eplug_conffile."'>[".LAN_CONFIGURE."]</a>";
$text .= "<br /><a class='btn btn-primary' href='".e_PLUGIN.$eplug_folder."/".$eplug_conffile."'>".LAN_CONFIGURE."</a>";
}
return $text;