diff options
author | Brion Vibber <brion@pobox.com> | 2010-10-08 11:01:13 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-10-08 11:01:13 -0700 |
commit | e23ad7392fa0a84a3cea2f50b0f96e4ba68a372b (patch) | |
tree | 2333c9747b33f6e308ceec8e5fa3b107ff4fe983 /plugins/Imap/imapmailhandler.php | |
parent | 69b13cb279d7b60cb3a7beb9ad39cfe3a3b7745b (diff) |
Normalize execution guards in imap plugin files.
Diffstat (limited to 'plugins/Imap/imapmailhandler.php')
-rw-r--r-- | plugins/Imap/imapmailhandler.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/Imap/imapmailhandler.php b/plugins/Imap/imapmailhandler.php index 3d4b6113a..92abf6474 100644 --- a/plugins/Imap/imapmailhandler.php +++ b/plugins/Imap/imapmailhandler.php @@ -17,7 +17,9 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +if (!defined('STATUSNET')) { + exit(1); +} class IMAPMailHandler extends MailHandler { |