X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=plugins%2Fmail_fetch%2Ffetch.php;h=53a44a4f237d6caf057a1fe7c5c7319d1fbc7c42;hb=395c3216ac2791704149054f0569db0be696a003;hp=17711ec507340cf5d3f3c282acd60d722c395a6d;hpb=876fdb605dcb48b44b5c0a3a6f2f106c941e5c20;p=squirrelmail.git diff --git a/plugins/mail_fetch/fetch.php b/plugins/mail_fetch/fetch.php index 17711ec5..53a44a4f 100644 --- a/plugins/mail_fetch/fetch.php +++ b/plugins/mail_fetch/fetch.php @@ -5,7 +5,7 @@ * * Fetch code. * - * @copyright © 1999-2007 The SquirrelMail Project Team + * @copyright 1999-2011 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package plugins @@ -20,6 +20,11 @@ require('../../include/init.php'); include_once(SM_PATH . 'functions/imap_general.php'); include_once(SM_PATH . 'plugins/mail_fetch/functions.php' ); +// don't load this page if this plugin is not enabled +// +global $plugins; +if (!in_array('mail_fetch', $plugins)) exit; + /* globals */ sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION); /* end globals */ @@ -132,8 +137,9 @@ echo html_tag( 'table', /* there are no servers defined yet... */ if($mailfetch['server_number'] == 0) { +//FIXME: do not echo directly to browser -- use templates only echo '

' . _("No POP3 servers configured yet.") . '

'; - displayInternalLink('plugins/mail_fetch/options.php', + echo makeInternalLink('plugins/mail_fetch/options.php', _("Click here to go to the options page.") ); $oTemplate->display('footer.tpl'); exit(); @@ -264,7 +270,7 @@ for ($i_loop=$i_start;$i_loop<$i_stop;$i_loop++) { } if ($mailfetch_lmos == 'on') { - Mail_Fetch_Status(_("Leaving mail on server...")); + Mail_Fetch_Status(_("Leaving messages on server...")); } else { Mail_Fetch_Status(_("Deleting messages from server...")); } @@ -343,4 +349,3 @@ for ($i_loop=$i_start;$i_loop<$i_stop;$i_loop++) { } $oTemplate->display('footer.tpl'); -