/******************************************************************/
/** Define any specialized save functions for this option page. ***/
+/** ***/
+/** You must add every function that is set in save parameter ***/
/******************************************************************/
-function save_option_header($option) {
-}
+/**
+ * This function saves the reply prefix (body_quote) character(s)
+ * @param object $option
+ */
+function save_option_reply_prefix($option) {
+ // save as "NONE" if it was blanked out
+ //
+ if (empty($option->new_value)) $option->new_value = 'NONE';
-?>
+
+ // Save the option like normal.
+ //
+ save_option($option);
+
+}
+?>
\ No newline at end of file
/** Define any specialized save functions for this option page. ***/
/******************************************************************/
-function save_option_header($option) {
-}
-
/**
* This function saves a new theme setting.
* It updates the theme array.
}
-/**
- * This function saves the reply prefix (body_quote) character(s)
- */
-function save_option_reply_prefix($option) {
-
- // save as "NONE" if it was blanked out
- //
- if (empty($option->new_value)) $option->new_value = 'NONE';
-
-
- // Save the option like normal.
- //
- save_option($option);
-
-}
-
-?>
+?>
\ No newline at end of file