Skip to content
GitLab
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
f502ca15
Commit
f502ca15
authored
Aug 02, 2017
by
Robert Lyon
Committed by
Gerrit Code Review
Aug 02, 2017
Browse files
Merge "Bug 1705980: trim tag spaces when creating post"
parents
564e0ff0
45b2be03
Changes
1
Hide whitespace changes
Inline
Side-by-side
htdocs/artefact/blog/post.php
View file @
f502ca15
...
...
@@ -39,7 +39,7 @@ if (!$blogpost) {
$title
=
''
;
$description
=
''
;
$tags
=
explode
(
","
,
$tagselect
);
$tags
=
array_map
(
'trim'
,
explode
(
","
,
$tagselect
)
)
;
$checked
=
''
;
$pagetitle
=
get_string
(
'newblogpost'
,
'artefact.blog'
,
get_field
(
'artefact'
,
'title'
,
'id'
,
$blog
));
$focuselement
=
'title'
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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