hholzgra                Sun Jun  9 06:49:53 2002 EDT

  Added files:                 
    /phpdoc/scripts/apply       cvsrev.php 
  Log:
  add CVS Revision: tags where mising
  
  

Index: phpdoc/scripts/apply/cvsrev.php
+++ phpdoc/scripts/apply/cvsrev.php
<?php

# add cvs Revision: tags where missing

function apply($input) {
        if( strstr($input, '$Revision: ')) {
                return false;
        }

        list($head, $rest) = explode("\n", $input, 2);

        return $head."\n".'<!-- $Revision: 1.1 $ -->'."\n".$rest;
}

?>
 


Reply via email to