removing empty and unused save_option_header() function.
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 17 Feb 2005 12:42:07 +0000 (12:42 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 17 Feb 2005 12:42:07 +0000 (12:42 +0000)
moving save_option_reply_prefix() to the right place.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@8862 7612ce4b-ef26-0410-bec9-ea0150e637f0

include/options/compose.php
include/options/display.php

index e10fdcaec838115ed8c6a77aa6568ae415497dea..27b834e0511554c740a382e96574276960e5c7ea 100644 (file)
@@ -166,10 +166,24 @@ function load_optpage_data_compose() {
 
 /******************************************************************/
 /** 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
index 1d5c6d2375474f86b073ac2875e7f30d8a933921..0e19717727dc7ea921af6876ca65e4fcf572d5de 100644 (file)
@@ -364,9 +364,6 @@ function load_optpage_data_display() {
 /** 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.
@@ -417,20 +414,4 @@ function icon_theme_save($option) {
 
 }
 
-/**
- * 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