Changeset 1538 for trunk/bp-blogs/bp-blogs-templatetags.php
- Timestamp:
- 06/10/2009 08:49:07 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/bp-blogs/bp-blogs-templatetags.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-blogs/bp-blogs-templatetags.php
r1449 r1538 222 222 } 223 223 224 if ( !$max )224 if ( !$max || $max >= (int)$this->blogs['count'] ) 225 225 $this->total_blog_count = (int)$this->blogs['count']; 226 226 else … … 398 398 } 399 399 400 if ( !$max )400 if ( !$max || $max >= (int)$this->posts['count'] ) 401 401 $this->total_post_count = (int)$this->posts['count']; 402 402 else … … 832 832 } 833 833 834 if ( !$max )834 if ( !$max || $max >= (int)$this->comments['count'] ) 835 835 $this->total_comment_count = (int)$this->comments['count']; 836 836 else … … 1085 1085 } 1086 1086 1087 if ( !$max )1087 if ( !$max || $max >= (int)$this->blogs['total'] ) 1088 1088 $this->total_blog_count = (int)$this->blogs['total']; 1089 1089 else
Note: See TracChangeset
for help on using the changeset viewer.