* adjust code.

This commit is contained in:
wangyidong
2015-09-11 14:06:50 +08:00
parent 453965f87c
commit bbf14efe38
4 changed files with 8 additions and 11 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ foreach($rows as $row)
echo '"';
foreach($fields as $fieldName => $fieldLabel)
{
isset($row->$fieldName) ? print(strip_tags($row->$fieldName)) : print('');
isset($row->$fieldName) ? print($row->$fieldName) : print('');
echo '","';
}
echo '"' . "\n";