]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
want a minimum of 10 subs per user
authorEvan Prodromou <evan@controlyourself.ca>
Mon, 27 Jul 2009 17:26:53 +0000 (13:26 -0400)
committerEvan Prodromou <evan@controlyourself.ca>
Mon, 27 Jul 2009 17:26:53 +0000 (13:26 -0400)
scripts/createsim.php

index eb97a624dbac10c9e0075050de4973ca8cb13963..71827ba5b73b9996c07701cb39df92cb8a299345 100644 (file)
@@ -135,7 +135,7 @@ function main($usercount, $noticeavg, $subsavg, $tagmax)
 
 $usercount  = (have_option('u', 'users')) ? get_option_value('u', 'users') : 100;
 $noticeavg  = (have_option('n', 'notices')) ? get_option_value('n', 'notices') : 100;
-$subsavg    = (have_option('b', 'subscriptions')) ? get_option_value('b', 'subscriptions') : min($usercount/20, 10);
+$subsavg    = (have_option('b', 'subscriptions')) ? get_option_value('b', 'subscriptions') : max($usercount/20, 10);
 $tagmax     = (have_option('t', 'tags')) ? get_option_value('t', 'tags') : 10000;
 $userprefix = (have_option('x', 'prefix')) ? get_option_value('x', 'prefix') : 'testuser';