diff --git a/module/doc/model.php b/module/doc/model.php index 7cc0da25e5..e25b9b5724 100644 --- a/module/doc/model.php +++ b/module/doc/model.php @@ -302,7 +302,7 @@ class docModel extends model { if(strpos($attribute, '=') === false) continue; list($attributeName, $attributeValue) = explode('=', $attribute); - $$attributeName = $attributeValue; + $$attributeName = trim(str_replace('>', '', $attributeValue)); } if(!isset($class)) continue;