X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Foptions.php;h=9607582d80af4ba56ed948fff4fcec6c67bb3a75;hb=fc99a551c505b2be1803373c8978f621ea2ea69f;hp=7b4d367ba209f3ea6cf7e444c5d7c635c6074d5d;hpb=52608668d89d69ee9456e0812be97d7e31fa885c;p=squirrelmail.git diff --git a/src/options.php b/src/options.php index 7b4d367b..9607582d 100644 --- a/src/options.php +++ b/src/options.php @@ -3,14 +3,14 @@ /** * options.php * - * Copyright (c) 1999-2005 The SquirrelMail Project Team - * Licensed under the GNU GPL. For full terms see the file COPYING. - * * Displays the options page. Pulls from proper user preference files * and config.php. Displays preferences as selected and other options. * + * @copyright © 1999-2006 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail + * @subpackage prefs */ /** @@ -20,14 +20,14 @@ define('SM_PATH','../'); /* SquirrelMail required files. */ -require_once(SM_PATH . 'include/validate.php'); -require_once(SM_PATH . 'functions/global.php'); -require_once(SM_PATH . 'functions/display_messages.php'); -require_once(SM_PATH . 'functions/imap.php'); -require_once(SM_PATH . 'functions/options.php'); -require_once(SM_PATH . 'functions/strings.php'); -require_once(SM_PATH . 'functions/html.php'); -require_once(SM_PATH . 'functions/forms.php'); +include_once(SM_PATH . 'include/validate.php'); +include_once(SM_PATH . 'functions/global.php'); +include_once(SM_PATH . 'functions/display_messages.php'); +include_once(SM_PATH . 'functions/imap.php'); +include_once(SM_PATH . 'functions/options.php'); +include_once(SM_PATH . 'functions/strings.php'); +include_once(SM_PATH . 'functions/html.php'); +include_once(SM_PATH . 'functions/forms.php'); /*********************************/ /*** Build the resultant page. ***/ @@ -249,6 +249,9 @@ if ($optmode == SMOPT_MODE_SUBMIT) { case SMOPT_PAGE_DISPLAY: $save_hook_name = 'options_display_save'; break; + case SMOPT_PAGE_COMPOSE: + $save_hook_name = 'options_compose_save'; + break; case SMOPT_PAGE_FOLDER: $save_hook_name = 'options_folder_save'; break; @@ -364,7 +367,7 @@ if ($optpage == SMOPT_PAGE_MAIN) { 'desc' => _("The order of the message index can be rearranged and changed to contain the headers in any order you want."), 'js' => false ); - + /* Build a section for Compose Options. */ $optpage_blocks[] = array( 'name' => _("Compose Preferences"), @@ -482,9 +485,12 @@ if ($optpage == SMOPT_PAGE_MAIN) { do_hook($bottom_hook_name); } } + ?> - +display('footer.tpl'); +?> \ No newline at end of file