Show
Ignore:
Timestamp:
01/18/06 18:45:19 (6 years ago)
Author:
john
Message:

Made all the file php long tags (uglysvn up)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/trax/vendor/trax/trax_generator.php

    r113 r117  
    1 <? 
     1<?php 
    22# $Id$ 
    33# 
     
    7777                            } 
    7878                        } 
    79                         $this->generate_controller($command_name,$views); 
     79                        $this->generate_controller($command_name, $views); 
    8080                    } 
    8181                    break; 
     
    9797                            } 
    9898                        }                         
    99                         $this->generate_scaffold($command_name,$controller_name,$views); 
     99                        $this->generate_scaffold($command_name, $controller_name, $views); 
    100100                    } 
    101101                    break;                     
     
    415415     
    416416    function fix_php_brackets($string) { 
    417         return str_replace("? >", "?>", str_replace("< ?", "<?", $string));             
     417        return str_replace("? >", "?>", str_replace("< ?php", "<?php", $string));             
    418418    } 
    419419