svn: /web/doc-editor/trunk/php/ class.php
[email protected] (Yannick Torres)
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <[email protected]> |
yannick Thu, 12 Nov 2009 17:40:17 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=290597
Log:
Remove saveOutputLogFile's method from class.php. This method is present in LogManager.php as saveOutputLog's method
Changed paths:
U web/doc-editor/trunk/php/class.php
Modified: web/doc-editor/trunk/php/class.php
===================================================================
--- web/doc-editor/trunk/php/class.php 2009-11-12 17:38:52 UTC (rev 290596)
+++ web/doc-editor/trunk/php/class.php 2009-11-12 17:40:17 UTC (rev 290597)
@@ -803,20 +803,6 @@
}
/**
- * Save Output message into a log file.
- *
- * @param $file The name of the file.
- * @param $output The output message.
- * @return Nothing.
- */
- function saveOutputLogFile($file, $output)
- {
- $fp = fopen(DOC_EDITOR_CVS_PATH . '../.' . $file, 'w');
- fwrite($fp, implode("<br>",$output));
- fclose($fp);
- }
-
- /**
* Get the content of a log file.
*
* @param $file The name of the file.