Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mahara
mahara
Commits
310726c6
Commit
310726c6
authored
Jun 23, 2010
by
Richard Mansfield
Browse files
Fix groupmembers block rendering when no of columns not set
Signed-off-by:
Richard Mansfield
<
richardm@catalyst.net.nz
>
parent
b4961420
Changes
1
Hide whitespace changes
Inline
Side-by-side
htdocs/blocktype/groupmembers/lib.php
View file @
310726c6
...
...
@@ -54,7 +54,7 @@ class PluginBlocktypeGroupMembers extends SystemBlocktype {
$configdata
=
$instance
->
get
(
'configdata'
);
$rows
=
$configdata
[
'rows'
];
$columns
=
$configdata
[
'columns'
];
$columns
=
$configdata
[
'columns'
]
?
$configdata
[
'columns'
]
:
3
;
$groupid
=
$instance
->
get_view
()
->
get
(
'group'
);
require_once
(
'searchlib.php'
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment