]> git.donarmstrong.com Git - infobot.git/commitdiff
* Minor fix to some long lines perl comlained about
authordjmcgrath <djmcgrath@c11ca15a-4712-0410-83d8-924469b57eb5>
Wed, 16 Apr 2008 17:40:35 +0000 (17:40 +0000)
committerdjmcgrath <djmcgrath@c11ca15a-4712-0410-83d8-924469b57eb5>
Wed, 16 Apr 2008 17:40:35 +0000 (17:40 +0000)
git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk@1664 c11ca15a-4712-0410-83d8-924469b57eb5

src/Factoids/Core.pl
src/Factoids/Update.pl

index dbf2d469ce9a4b906c39a85ba7cb39ea14eb3988..bf8cfcdf77b5ff2aaaf59f8e04ed25ab7df0e8d3 100644 (file)
@@ -395,10 +395,7 @@ sub FactoidStuff {
             return;
 
         # If they have +M but they didnt create the factoid
-        } elsif (&IsFlag('M') eq 'M' and
-                 $who !~ /^\Q$created_by\E$/i
-                 &IsFlag('m') ne 'm'
-                 &IsFlag('o') ne 'o') {
+        } elsif (&IsFlag('M') eq 'M' and $who !~ /^\Q$created_by\E$/i &IsFlag('m') ne 'm' &IsFlag('o') ne 'o') {
             &performReply("factoid '$from' is not yours to modify.");
             return;
         }
@@ -448,10 +445,7 @@ sub FactoidStuff {
                 return;
 
             # If they have +M but they didnt create the factoid
-            } elsif (&IsFlag('M') eq 'M' and
-                     $who !~ /^\Q$created_by\E$/i
-                     &IsFlag('m') ne 'm'
-                     &IsFlag('o') ne 'o') {
+            } elsif (&IsFlag('M') eq 'M' and $who !~ /^\Q$created_by\E$/i &IsFlag('m') ne 'm' &IsFlag('o') ne 'o') {
                 &performReply("factoid '$faqtoid' is not yours to modify.");
                 return;
             }
index 75714dad450beb74c2a8a12b3c4ebd17d945fb72..08c6826ed7bb767c2bf6e0c9aa8576ce05f14821 100644 (file)
@@ -63,10 +63,7 @@ sub update {
             return 1;
 
         # If they have +M but they didnt create the factoid
-        } elsif (&IsFlag('M') eq 'M' and
-                 $who !~ /^\Q$created_by\E$/i
-                 &IsFlag('m') ne 'm'
-                 &IsFlag('o') ne 'o') {
+        } elsif (&IsFlag('M') eq 'M' and $who !~ /^\Q$created_by\E$/i &IsFlag('m') ne 'm' &IsFlag('o') ne 'o') {
             &performReply("factoid '$lhs' is not yours to modify.");
             return 1;
         }