Skip to content

Commit

Permalink
Fix HTML typo.
Browse files Browse the repository at this point in the history
Signed-off-by: Hugues Peccatte <[email protected]>
  • Loading branch information
Tithugues committed Oct 7, 2015
1 parent e8e1650 commit 191334f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/privileges/add_privileges_routine.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<label for="text_routinename"><?php echo __('Add privileges on the following routine:'); ?></label>

<?php if (! empty($routines)) : ?>
<select name="pred_routinename" 'class="autosubmit">
<select name="pred_routinename" class="autosubmit">
<option value="" selected="selected"><?php echo __('Use text field'); ?>:</option>
<?php foreach ($routines as $routine) : ?>
<option value="<?php echo htmlspecialchars($routine); ?>"><?php echo htmlspecialchars($routine); ?></option>
Expand Down
2 changes: 1 addition & 1 deletion templates/privileges/add_privileges_table.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<label for="text_tablename"><?php echo __('Add privileges on the following table:'); ?></label>

<?php if (! empty($tables)) : ?>
<select name="pred_tablename" 'class="autosubmit">
<select name="pred_tablename" class="autosubmit">
<option value="" selected="selected"><?php echo __('Use text field'); ?>:</option>
<?php foreach ($tables as $table) : ?>
<option value="<?php echo htmlspecialchars($table); ?>"><?php echo htmlspecialchars($table); ?></option>
Expand Down

0 comments on commit 191334f

Please sign in to comment.