X-Git-Url: https://jfr.im/git/irc/unrealircd/unrealircd-webpanel.git/blobdiff_plain/c06c1713af2db485d55a91073bbc5b63b6aa8c0b..0d62343db7cf98dda603d338e1948a9a09af5862:/plugins.php?ds=sidebyside diff --git a/plugins.php b/plugins.php index 2f433cb..225d144 100644 --- a/plugins.php +++ b/plugins.php @@ -45,7 +45,7 @@ class Plugins static function plugin_exists($name, $version = NULL) { foreach(self::$list as $p) - if (!strcasecmp($p->name,$name) && (!$version || ($version >= $p->version))) + if (!strcmp($p->name,$name) && (!$version || ($version >= $p->version))) return true; return false;