Skip to content

Commit dcc63a8

Browse files
committed
Remove XHTML
1 parent 01a7a9b commit dcc63a8

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

adm/style/acp_phpbb_ideas.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ <h3>{{ lang('WARNING') }}</h3>
1717
<fieldset>
1818
<legend>{{ lang('ACP_PHPBB_IDEAS_SETTINGS') }}</legend>
1919
<dl>
20-
<dt><label for="ideas_forum_id">{{ lang('ACP_IDEAS_FORUM_ID') ~ lang('COLON') }}</label><br /><span>{{ lang('ACP_IDEAS_FORUM_ID_EXPLAIN') }}</span></dt>
20+
<dt><label for="ideas_forum_id">{{ lang('ACP_IDEAS_FORUM_ID') ~ lang('COLON') }}</label><br><span>{{ lang('ACP_IDEAS_FORUM_ID_EXPLAIN') }}</span></dt>
2121
<dd>{{ S_FORUM_SELECT_BOX }}</dd>
2222
</dl>
2323

2424
<fieldset class="submit-buttons">
25-
<input class="button1" type="submit" id="submit" name="submit" value="{{ lang('SUBMIT') }}" />&nbsp;
26-
<input class="button2" type="reset" id="reset" name="reset" value="{{ lang('RESET') }}" />
25+
<input class="button1" type="submit" id="submit" name="submit" value="{{ lang('SUBMIT') }}">&nbsp;
26+
<input class="button2" type="reset" id="reset" name="reset" value="{{ lang('RESET') }}">
2727
{{ S_FORM_TOKEN }}
2828
</fieldset>
2929
</fieldset>
@@ -33,9 +33,9 @@ <h3>{{ lang('WARNING') }}</h3>
3333
<fieldset>
3434
<legend>{{ lang('ACP_IDEAS_UTILITIES') }}</legend>
3535
<dl>
36-
<dt><label for="ideas_forum_setup">{{ lang('ACP_IDEAS_FORUM_SETUP') ~ lang('COLON') }}</label><br /><span>{{ lang('ACP_IDEAS_FORUM_SETUP_EXPLAIN') }}</span></dt>
36+
<dt><label for="ideas_forum_setup">{{ lang('ACP_IDEAS_FORUM_SETUP') ~ lang('COLON') }}</label><br><span>{{ lang('ACP_IDEAS_FORUM_SETUP_EXPLAIN') }}</span></dt>
3737
<dd>
38-
<input class="button2" type="submit" id="ideas_forum_setup" name="ideas_forum_setup" value="{{ lang('RUN') }}" {{ not S_IDEAS_FORUM_ID ? 'disabled' }} />
38+
<input class="button2" type="submit" id="ideas_forum_setup" name="ideas_forum_setup" value="{{ lang('RUN') }}" {{ not S_IDEAS_FORUM_ID ? 'disabled' }}>
3939
</dd>
4040
</dl>
4141
</fieldset>

controller/admin_controller.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public function set_config_options()
109109
{
110110
$this->template->assign_vars(array(
111111
'S_ERROR' => true,
112-
'ERROR_MSG' => implode('<br />', $errors),
112+
'ERROR_MSG' => implode('<br>', $errors),
113113
));
114114

115115
return;

controller/idea_controller.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public function delete()
8686
$this->entity->delete($this->data['idea_id'], $this->data['topic_id']);
8787

8888
$redirect = $this->helper->route('phpbb_ideas_index_controller');
89-
$message = $this->language->lang('IDEA_DELETED') . '<br /><br />' . $this->language->lang('RETURN_IDEAS', '<a href="' . $redirect . '">', '</a>');
89+
$message = $this->language->lang('IDEA_DELETED') . '<br><br>' . $this->language->lang('RETURN_IDEAS', '<a href="' . $redirect . '">', '</a>');
9090
meta_refresh(3, $redirect);
9191
trigger_error($message); // trigger error needed for data-ajax
9292
}

language/en/common.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
'IDEA_DELETED' => 'Idea successfully deleted.',
3939
'IDEA_LIST' => 'Idea List',
4040
'IDEA_NOT_FOUND' => 'Idea not found',
41-
'IDEA_STORED_MOD' => 'Your idea has been submitted successfully, but it will need to be approved by a moderator before it is publicly viewable. You will be notified when your idea has been approved.<br /><br /><a href="%s">Return to Ideas</a>.',
41+
'IDEA_STORED_MOD' => 'Your idea has been submitted successfully, but it will need to be approved by a moderator before it is publicly viewable. You will be notified when your idea has been approved.<br><br><a href="%s">Return to Ideas</a>.',
4242
'IDEAS_TITLE' => 'phpBB Ideas',
4343
'IDEAS_NOT_AVAILABLE' => 'Ideas is not available at this time.',
4444
'IMPLEMENTED' => 'Implemented',

0 commit comments

Comments
 (0)