diff options
author | cash <cash.costello@gmail.com> | 2011-12-23 15:07:49 -0500 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-12-23 15:07:49 -0500 |
commit | 23a912aa6678bb16f866b01c175b8e73e7bf417d (patch) | |
tree | 57051f26819d746cfe51b189e2bba4ec12eeede3 /mod/blog | |
parent | 3d3312d47597249def3ed8efdcbf68869e3fef31 (diff) | |
download | elgg-23a912aa6678bb16f866b01c175b8e73e7bf417d.tar.gz elgg-23a912aa6678bb16f866b01c175b8e73e7bf417d.tar.bz2 |
Refs #4239 fixed upgrade scripts with bad limits
Diffstat (limited to 'mod/blog')
-rw-r--r-- | mod/blog/start.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/blog/start.php b/mod/blog/start.php index fa57e7b96..4b825fc1f 100644 --- a/mod/blog/start.php +++ b/mod/blog/start.php @@ -248,7 +248,8 @@ function blog_run_upgrades($event, $type, $details) { $ia = elgg_set_ignore_access(true); $options = array( 'type' => 'object', - 'subtype' => 'blog' + 'subtype' => 'blog', + 'limit' => 0, ); $blogs = new ElggBatch('elgg_get_entities', $options); |