Changeset 117 for trunk/trax/vendor/trax/trax_generator.php
- Timestamp:
- 01/18/06 18:45:19 (6 years ago)
- Files:
-
- 1 modified
-
trunk/trax/vendor/trax/trax_generator.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/trax/vendor/trax/trax_generator.php
r113 r117 1 <? 1 <?php 2 2 # $Id$ 3 3 # … … 77 77 } 78 78 } 79 $this->generate_controller($command_name, $views);79 $this->generate_controller($command_name, $views); 80 80 } 81 81 break; … … 97 97 } 98 98 } 99 $this->generate_scaffold($command_name, $controller_name,$views);99 $this->generate_scaffold($command_name, $controller_name, $views); 100 100 } 101 101 break; … … 415 415 416 416 function fix_php_brackets($string) { 417 return str_replace("? >", "?>", str_replace("< ? ", "<?", $string));417 return str_replace("? >", "?>", str_replace("< ?php", "<?php", $string)); 418 418 } 419 419
