Changeset 4959
- Timestamp:
- 09/12/08 20:57:55 (10 months ago)
- Files:
-
- 1 modified
-
branches/1.0/lib/Doctrine/Parser/sfYaml.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/lib/Doctrine/Parser/sfYaml.php
r4756 r4959 97 97 } 98 98 } 99 100 /**101 * Wraps echo to automatically provide a newline.102 *103 * @param string The string to echo with new line104 */105 //I add a is_callable test to avoid redeclaration.106 if (!is_callable('echoln')){107 function echoln($string)108 {109 echo $string."\n";110 }111 }