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
moodle
moodle
Commits
7cff1745
Commit
7cff1745
authored
Mar 20, 2019
by
Eloy Lafuente
Browse files
Merge branch 'MDL-65022' of
https://github.com/Dagefoerde/moodle
parents
f422e24d
1d8e6dac
Changes
1
Hide whitespace changes
Inline
Side-by-side
mod/wiki/edit_form.php
View file @
7cff1745
...
...
@@ -108,8 +108,8 @@ class mod_wiki_edit_form extends moodleform {
$buttongroup
=
array
();
$buttongroup
[]
=
$mform
->
createElement
(
'submit'
,
'editoption'
,
get_string
(
'save'
,
'wiki'
),
array
(
'id'
=>
'save'
));
$buttongroup
[]
=
$mform
->
createElement
(
'submit'
,
'editoption'
,
get_string
(
'preview'
),
array
(
'id'
=>
'preview'
));
$buttongroup
[]
=
$mform
->
createElement
(
'submit'
,
'editoption'
,
get_string
(
'cancel'
),
array
(
'id'
=>
'cancel'
));
$buttongroup
[]
=
$mform
->
createElement
(
'submit'
,
'editoption'
,
get_string
(
'preview'
),
array
(
'id'
=>
'preview'
)
,
false
);
$buttongroup
[]
=
$mform
->
createElement
(
'submit'
,
'editoption'
,
get_string
(
'cancel'
),
array
(
'id'
=>
'cancel'
)
,
false
);
$mform
->
addGroup
(
$buttongroup
,
'buttonar'
,
''
,
array
(
' '
),
false
);
$mform
->
closeHeaderBefore
(
'buttonar'
);
...
...
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