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
e0f29616
Commit
e0f29616
authored
Jun 27, 2012
by
Richard Mansfield
Committed by
Gerrit Code Review
Jun 27, 2012
Browse files
Merge "Fixed undefined index "urlid" (Bug #1011861)"
parents
3f529b3e
e3ea74c4
Changes
1
Hide whitespace changes
Inline
Side-by-side
htdocs/group/edit.php
View file @
e0f29616
...
...
@@ -443,7 +443,7 @@ function editgroup_submit(Pieform $form, $values) {
db_commit
();
// Reload $group_data->urlid or else the redirect will fail
if
(
get_config
(
'cleanurls'
)
&&
!
isset
(
$values
[
'urlid'
])
||
$group_data
->
urlid
!=
$values
[
'urlid'
])
{
if
(
get_config
(
'cleanurls'
)
&&
(
!
isset
(
$values
[
'urlid'
])
||
$group_data
->
urlid
!=
$values
[
'urlid'
])
)
{
$group_data
->
urlid
=
get_field
(
'group'
,
'urlid'
,
'id'
,
$group_data
->
id
);
}
...
...
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