From 3fde66bb888adcd31b22841cc31b5689fa472071 Mon Sep 17 00:00:00 2001 From: wangchunsheng Date: Wed, 23 Jan 2013 02:47:53 +0000 Subject: [PATCH] * fix the error of doc table border setting. --- module/doc/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;