Development

Changeset 3175

You must first sign up to be able to contribute.

Changeset 3175

Show
Ignore:
Timestamp:
01/06/07 09:22:38 (2 years ago)
Author:
fabien
Message:

lime: fixed comment method

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tools/lime/lib/lime.php

    r3130 r3175  
    271271    foreach ($messages as $message) 
    272272    { 
    273       $this->echoln('# '.join("\n# ", (array) $message)); 
     273      array_map(array($this, 'comment'), (array) $message); 
    274274    } 
    275275  } 
     
    277277  function comment($message) 
    278278  { 
    279     echo "$message\n"; 
     279    echo "# $message\n"; 
    280280  } 
    281281