* fix the error of doc table border setting.

This commit is contained in:
wangchunsheng
2013-01-23 02:47:53 +00:00
parent 43ab996a8a
commit 3fde66bb88

View File

@@ -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;