Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
mahara
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
mahara
mahara
Commits
a282203c
Commit
a282203c
authored
Dec 11, 2014
by
Aaron Wells
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix incorrect scalar $values param
Bug 1401324 Change-Id: I82cc854004937161c29d74a6c26fc6a00352470b
parent
b17d372e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
htdocs/lib/group.php
htdocs/lib/group.php
+1
-1
No files found.
htdocs/lib/group.php
View file @
a282203c
...
...
@@ -1382,7 +1382,7 @@ function group_get_admin_ids($groupid) {
return
(
array
)
get_column_sql
(
"SELECT
\"
member
\"
FROM
{
group_member
}
WHERE
\"
group
\"
= ?
AND
\"
role
\"
= 'admin'"
,
$groupid
);
AND
\"
role
\"
= 'admin'"
,
array
(
$groupid
)
);
}
/**
...
...
Write
Preview
Markdown
is supported
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