Changeset 1063
- Timestamp:
- 08/16/07 23:45:19 (1 year ago)
- Files:
-
- trunk/src/lyceum/wp-admin/options.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/lyceum/wp-admin/options.php
r1062 r1063 233 233 $options_to_update[] = $option->option_name; 234 234 $class = 'all-options'; 235 }236 $page_options[] = $option->option_name;235 236 } 237 237 echo " 238 238 <tr> … … 247 247 </tr>"; 248 248 endforeach; 249 $page_options_list = implode(',',$page_options);250 249 ?> 251 250 </table> 252 <<<<<<< .working253 <input type="hidden" name="page_options" value="<?php echo $page_options_list ?>" />254 <?php echo tokeninput('options.php', 'update', $page_options_list)?>255 <p class="submit"><input type="submit" name="Update" value="<?php _e('Update Settings »') ?>" /></p>256 =======257 251 <?php $options_to_update = implode(',', $options_to_update); ?> 252 <?php echo tokeninput('options.php', 'update', $options_to_update)?> 258 253 <p class="submit"><input type="hidden" name="page_options" value="<?php echo $options_to_update; ?>" /><input type="submit" name="Update" value="<?php _e('Update Options »') ?>" /></p> 259 >>>>>>> .merge-right.r4890260 254 </form> 261 255 </div>
