forked from leftypol/leftypol
Add \n before post modifiers. Add flag alt for country flags.
This commit is contained in:
parent
5774d21632
commit
0d45fbc799
2 changed files with 4 additions and 3 deletions
5
post.php
5
post.php
|
@ -422,7 +422,7 @@ if (isset($_POST['delete'])) {
|
|||
$post['body'] = escape_markup_modifiers($post['body']);
|
||||
|
||||
if ($mod && isset($post['raw']) && $post['raw']) {
|
||||
$post['body'] .= '<tinyboard raw html>1</tinyboard>';
|
||||
$post['body'] .= "\n<tinyboard raw html>1</tinyboard>";
|
||||
}
|
||||
|
||||
if ($config['country_flags']) {
|
||||
|
@ -430,7 +430,8 @@ if (isset($_POST['delete'])) {
|
|||
error('GeoIP not available: ' . geoip_db_filename(GEOIP_COUNTRY_EDITION));
|
||||
}
|
||||
if ($country_code = @geoip_country_code_by_name($_SERVER['REMOTE_ADDR'])) {
|
||||
$post['body'] .= '<tinyboard flag>' . strtolower($country_code) . '</tinyboard>';
|
||||
$post['body'] .= "\n<tinyboard flag>" . strtolower($country_code) . "</tinyboard>" .
|
||||
"\n<tinyboard flag alt>" . @geoip_country_name_by_name($_SERVER['REMOTE_ADDR']) . "</tinyboard>";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue