]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix syntax err
authorZach Copley <zach@status.net>
Thu, 4 Aug 2011 19:06:57 +0000 (12:06 -0700)
committerZach Copley <zach@status.net>
Thu, 4 Aug 2011 19:06:57 +0000 (12:06 -0700)
scripts/createsim.php

index 4912d2a61b3d4b9bb27ea6752cd7d73779a06f9f..64ad907cb0082419dc942c384e8568e53bb1c7ec 100644 (file)
@@ -221,7 +221,7 @@ function newJoin($u, $g)
 function testNoticeContent()
 {
     global $words;
-    
+
     if (is_null($words)) {
         return "test notice content";
     }
@@ -235,11 +235,11 @@ function testNoticeContent()
     }
 
     $text = implode(' ', $parts);
-    
+
     if (mb_strlen($text) > 80) {
         $text = substr($text, 0, 77) . "...";
     }
-    
+
     return $text;
 }
 
@@ -311,7 +311,7 @@ function main($usercount, $groupcount, $noticeavg, $subsavg, $joinsavg, $tagmax)
     }
 }
 
-$defaultWordfile = '/usr/share/dict/words';
+$defaultWordsfile = '/usr/share/dict/words';
 
 $usercount   = (have_option('u', 'users')) ? get_option_value('u', 'users') : 100;
 $groupcount  = (have_option('g', 'groups')) ? get_option_value('g', 'groups') : 20;
@@ -321,14 +321,14 @@ $joinsavg    = (have_option('j', 'joins')) ? get_option_value('j', 'joins') : 5;
 $tagmax      = (have_option('t', 'tags')) ? get_option_value('t', 'tags') : 10000;
 $userprefix  = (have_option('x', 'prefix')) ? get_option_value('x', 'prefix') : 'testuser';
 $groupprefix = (have_option('z', 'groupprefix')) ? get_option_value('z', 'groupprefix') : 'testgroup';
-$wordsfile   = (have_option('w', 'words')) ? get_option_value('w', 'words') : $defaultWordfile;
+$wordsfile   = (have_option('w', 'words')) ? get_option_value('w', 'words') : $defaultWordsfile;
 
 if (is_readable($wordsfile)) {
     $words = file($wordsfile);
 } else {
-   if ($wordsfile != $defaultWordfile) {
+   if ($wordsfile != $defaultWordsfile) {
       // user specified words file couldn't be read
-      throw new Exception("Couldn't read words file: {$wordfile}.");
+      throw new Exception("Couldn't read words file: {$wordsfile}.");
     }
     $words = null;
 }