Add group posts to createsim.php

This commit is contained in:
Evan Prodromou 2011-03-26 15:08:27 -04:00
parent bc2f64d7ab
commit 6902c0af35
1 changed files with 15 additions and 0 deletions

View File

@ -103,6 +103,21 @@ function newNotice($i, $tagmax)
}
}
$in_group = rand(0, 5);
if ($in_group == 0) {
$groups = $user->getGroups();
if ($groups->N > 0) {
$gval = rand(0, $group->N);
$groups->fetch(); // go to 0th
for ($i = 0; $i < $gval; $i++) {
$groups->fetch();
}
$options['groups'] = array($groups->id);
$content = "!".$groups->nickname." ".$content;
}
}
$notice = Notice::saveNew($user->id, $content, 'system', $options);
}