fix fn in timeline action.

This commit is contained in:
wlx 2009-12-20 15:27:52 +00:00
parent cec6465e4e
commit f7c2953264
1 changed files with 1 additions and 1 deletions

View File

@ -286,7 +286,7 @@ class DataController extends Zend_Controller_Action
$timexml.=htmlspecialchars($desc).'</event>'; $timexml.=htmlspecialchars($desc).'</event>';
} }
$timexml.='</data>'; $timexml.='</data>';
$fp=fopen('time.xml','w'); $fp=fopen($fn,'w');
fwrite($fp,$timexml); fwrite($fp,$timexml);
fclose($fp); fclose($fp);
} }