aboutsummaryrefslogtreecommitdiff
path: root/views/default/tidypics
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2010-08-04 23:09:57 +0000
committerCash Costello <cash.costello@gmail.com>2010-08-04 23:09:57 +0000
commit3838caed15ac73f81827829b6c094aae3c3f3539 (patch)
tree6a001f557221453dc1987a588f21b62b3010fff0 /views/default/tidypics
parent1d3b83e6791b1e9e3386bb79937ef58240ba94ba (diff)
downloadelgg-3838caed15ac73f81827829b6c094aae3c3f3539.tar.gz
elgg-3838caed15ac73f81827829b6c094aae3c3f3539.tar.bz2
fixed bug where latest photos widget was trying to display 4 photos across instead of three - need a better long term solution
Diffstat (limited to 'views/default/tidypics')
-rw-r--r--views/default/tidypics/gallery.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/views/default/tidypics/gallery.php b/views/default/tidypics/gallery.php
index 74aa34500..ba6f7b11d 100644
--- a/views/default/tidypics/gallery.php
+++ b/views/default/tidypics/gallery.php
@@ -4,8 +4,12 @@
*
*/
-// four albums across
-$num_wide = 4;
+if ($vars['context'] == 'widget') {
+ $num_wide = 3;
+} else {
+ // four albums across
+ $num_wide = 4;
+}
$context = $vars['context'];
$offset = $vars['offset'];