Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
mahara
mahara
Commits
4ef7f722
Commit
4ef7f722
authored
Nov 02, 2006
by
Richard Mansfield
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Put messages are in a div with an id 'messages'
parent
c446f03f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
htdocs/lib/session.php
htdocs/lib/session.php
+2
-1
No files found.
htdocs/lib/session.php
View file @
4ef7f722
...
...
@@ -220,7 +220,7 @@ class Session {
* @return string The HTML representing all of the session messages.
*/
public
function
render_messages
()
{
$result
=
''
;
$result
=
'
<div id="messages">
'
;
if
(
isset
(
$_SESSION
[
'messages'
]))
{
foreach
(
$_SESSION
[
'messages'
]
as
$data
)
{
if
(
$data
[
'type'
]
==
'ok'
)
{
...
...
@@ -236,6 +236,7 @@ class Session {
}
$_SESSION
[
'messages'
]
=
array
();
}
$result
.
=
'</div>'
;
return
$result
;
}
...
...
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