Fixed get_name_url

This commit is contained in:
nemunaire 2014-01-11 17:05:19 +01:00
parent 46133f9240
commit 81e4b3dce5

View File

@ -74,7 +74,7 @@ class Theme
function get_name_url()
{
return urlencode($this->name);
return preg_replace("#[^a-zA-Z0-9_]#", "_", $this->name);
}
function get_id()