1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-28 08:39:57 +02:00

Display chapter breadcrumb in default page template when appropriate.

This commit is contained in:
Cameron
2015-01-10 16:13:32 -08:00
parent cc0c2dde8d
commit 3237417b85
3 changed files with 4 additions and 3 deletions

View File

@@ -2202,7 +2202,7 @@ class e_form
function name2id($name)
{
$name = strtolower($name);
return rtrim(str_replace(array('[]', '[', ']', '_', '/', ' ','.'), array('-', '-', '', '-', '-', '-', '-'), $name), '-');
return rtrim(str_replace(array('[]', '[', ']', '_', '/', ' ','.', '(', ')'), array('-', '-', '', '-', '-', '-', '-','',''), $name), '-');
}
/**