Skip to content

Commit

Permalink
Fix trucated button label (add missing ")
Browse files Browse the repository at this point in the history
Regression from b78f966
caused the button's text to be truncated at 1st word.

Fixes #20241
  • Loading branch information
dregad committed Nov 22, 2015
1 parent 63bbb19 commit 29d2980
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manage_config_workflow_page.php
Expand Up @@ -503,7 +503,7 @@ function access_end() {
echo '<input name="revert" type="hidden" value="' . implode( ',', $g_overrides ) . '" />';
echo '<input name="project" type="hidden" value="' . $t_project . '" />';
echo '<input name="return" type="hidden" value="' . string_attribute( form_action_self() ) .'" />';
echo '<input type="submit" class="button" value=';
echo '<input type="submit" class="button" value="';
if( ALL_PROJECTS == $t_project ) {
echo lang_get( 'revert_to_system' );
} else {
Expand Down

0 comments on commit 29d2980

Please sign in to comment.