--- a/include/Util.class.php +++ b/include/Util.class.php @@ -68,10 +68,10 @@ public static function MakeSlug($str) { $from = array( - '/' + '/&' ); $to = array( - '-' + '--' ); return str_replace($from, $to, $str); }