Add warning and ban messages to the API
This commit is contained in:
parent
8eb2043262
commit
cd2c81b654
|
@ -110,7 +110,7 @@ class Api {
|
|||
if (isset($config['poster_ids']) && $config['poster_ids']) $apiPost['id'] = poster_id($post->ip, $post->thread, $board['uri']);
|
||||
if ($threadsPage) return $apiPost;
|
||||
|
||||
// Handle country field
|
||||
// Handle special fields
|
||||
if (isset($post->body_nomarkup) && ($this->config['country_flags'] || $this->config['user_flag'])) {
|
||||
$modifiers = extract_modifiers($post->body_nomarkup);
|
||||
if (isset($modifiers['flag']) && isset($modifiers['flag alt']) && preg_match('/^[1-9a-z_-]{2,}$/', $modifiers['flag'])) {
|
||||
|
@ -120,6 +120,12 @@ class Api {
|
|||
$apiPost['country_name'] = $modifiers['flag alt'];
|
||||
}
|
||||
}
|
||||
if (isset($modifiers['warning message'])) {
|
||||
$apiPost['warning_msg'] = $modifiers['warning message'];
|
||||
}
|
||||
if (isset($modifiers['ban message'])) {
|
||||
$apiPost['ban_msg'] = $modifiers['ban message'];
|
||||
}
|
||||
}
|
||||
|
||||
if ($config['slugify'] && !$post->thread) {
|
||||
|
|
Loading…
Reference in New Issue