Changeset 171
- Timestamp:
- 04/09/07 08:48:49 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/AkActionView/helpers/active_record_helper.php
r109 r171 157 157 foreach (array_keys($record->getContentColumns()) as $column){ 158 158 ob_start(); 159 eval("?>$input_block<? ");159 eval("?>$input_block<?php "); 160 160 $result .= ob_get_clean()."\n"; 161 161 } trunk/lib/AkActionWebService/Servers/AkXmlRpcServer.php
r34 r171 130 130 { 131 131 $this->_generateServerClassCode(); 132 eval('?>'.$this->_serverClassCode.'<? ');132 eval('?>'.$this->_serverClassCode.'<?php '); 133 133 $Server =& new $this->options['dynamic_server_class_name']; 134 134 $this->_linkWebServicesToServer($Server); trunk/script/generators/controller/templates/controller.tpl
r155 r171 6 6 <?php if(!empty($options['scaffold'])) :?> 7 7 var $scaffold = '<?php echo AkInflector::singularize($class_name)?>'; 8 <? endif;?>8 <?php endif; ?> 9 9 <?php foreach ($actions as $action) : ?> 10 10 11 function <?php echo $action?> ()11 function <?php echo $action?> () 12 12 { 13 13 } 14 <? endforeach;?>14 <?php endforeach; ?> 15 15 } 16 16
