]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Normalize execution guards in imap plugin files.
authorBrion Vibber <brion@pobox.com>
Fri, 8 Oct 2010 18:01:13 +0000 (11:01 -0700)
committerBrion Vibber <brion@pobox.com>
Fri, 8 Oct 2010 18:01:13 +0000 (11:01 -0700)
plugins/Imap/imapmailhandler.php
plugins/Imap/imapmanager.php

index 3d4b6113a9abf8c99e8fd6171dccf18702d47c2b..92abf64747846529dc21301a8774bffea90da658 100644 (file)
@@ -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
 {
index e2f8c6d5431f829dd6153d03c95f04145669e5d3..a9e531e1ae60db4d67df7cdc7a02dbc9738596bb 100644 (file)
  * @link      http://status.net/
  */
 
+if (!defined('STATUSNET')) {
+    exit(1);
+}
+
 class ImapManager extends IoManager
 {
     protected $conn = null;