Changeset 4959

Show
Ignore:
Timestamp:
09/12/08 20:57:55 (10 months ago)
Author:
jwage
Message:

fixes #1413

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/1.0/lib/Doctrine/Parser/sfYaml.php

    r4756 r4959  
    9797  } 
    9898} 
    99  
    100 /** 
    101  * Wraps echo to automatically provide a newline. 
    102  * 
    103  * @param string The string to echo with new line 
    104  */ 
    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 }