Changeset 6359
- Timestamp:
- 12/07/07 15:14:27 (9 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfExtjsThemePlugin/data/generator/sfPropelAdmin/extjs/template/templates/_related_ajax_renderer.php
r6328 r6359 97 97 foreach ($columnsFromGroup as $column) 98 98 { 99 $columnName = $column->getTableName().'/'.$column->get PhpName();99 $columnName = $column->getTableName().'/'.$column->getName(); 100 100 // remove base classname for checks (This way you can check on fields like name, instead of product/name) 101 101 list($class, $checkName) = explode('/', $columnName, 2); … … 119 119 foreach ($relatedClasses['columns'] as $group => $columnsFromGroup): 120 120 foreach ($columnsFromGroup as $column): 121 $columnName = $column->getTableName().'/'.$column->getPhpName();121 $columnName = strtolower($column->getTableName().'/'.$column->getPhpName()); 122 122 123 123 // remove base classname for checks (This way you can check on fields like name, instead of product/name) … … 126 126 { 127 127 $checkName = $columnName; 128 $columnName = strtolower($this->getClassName()).'/'.$columnName; 128 129 } 129 130 130 131 $credentials = $this->getParameterValue('list.fields.'.$checkName.'.credentials'); 131 132 ?>