Changeset 9502
- Timestamp:
- Dec 7, 2008, 8:53:43 PM (14 years ago)
- Location:
- OpenPNE3/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE3/trunk/apps/pc_frontend/modules/member/templates/configSuccess.php
r9498 r9502 10 10 <?php end_slot(); ?> 11 11 12 <?php if (count($form)) : ?> 12 13 <?php include_box('form'.$categoryName, $categoryName, '', array( 13 14 'form' => array($form), 14 15 'url' => 'member/config?category='.$categoryName) 15 16 ) ?> 17 <?php endif; ?> -
OpenPNE3/trunk/lib/config/config/member_config.yml
r9157 r9502 8 8 # IsConfig: true 9 9 # IsRequired: true 10 11 general: 10 12 11 13 pcAddress: -
OpenPNE3/trunk/lib/config/sfOpenPNEConfigHandler.class.php
r9199 r9502 22 22 { 23 23 $categoryList .= sprintf("'%s' => array(\n", $category); 24 foreach ($keys as $key => $value)24 if ($keys) 25 25 { 26 $data .= sprintf("'%s' => %s,\n", $key, var_export($value, true)); 27 $categoryList .= sprintf("'%s',\n", $key); 26 foreach ($keys as $key => $value) 27 { 28 $data .= sprintf("'%s' => %s,\n", $key, var_export($value, true)); 29 $categoryList .= sprintf("'%s',\n", $key); 30 } 28 31 } 29 32 $categoryList .= "),\n";
Note: See TracChangeset
for help on using the changeset viewer.