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
b5631e5d
Commit
b5631e5d
authored
Dec 15, 2006
by
Nigel McNie
Committed by
Nigel McNie
Dec 15, 2006
Browse files
Fix warning with no values.
parent
87fefd21
Changes
1
Show whitespace changes
Inline
Side-by-side
htdocs/view/create4.php
View file @
b5631e5d
...
...
@@ -60,7 +60,7 @@ function createview4_submit($values) {
if
(
param_boolean
(
'back'
))
{
$data
[
'accesslist'
]
=
array_values
(
$values
[
'accesslist'
]);
$data
[
'accesslist'
]
=
array_values
(
(
array
)
$values
[
'accesslist'
]);
log_debug
(
$data
);
$SESSION
->
set
(
'create_'
.
$createid
,
$data
);
redirect
(
get_config
(
'wwwroot'
)
.
'view/create3.php?createid='
.
$createid
);
...
...
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