Browse Source

Merge pull request #69 from PietroCarrara/json-flags

Enable flags on the JSON api
pull/40/head
towards-a-new-leftypol 3 years ago
committed by GitHub
parent
commit
d8dfe76e03
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      inc/api.php
  2. 0
      inc/instance-config.php

8
inc/api.php

@ -111,10 +111,10 @@ class Api {
if ($threadsPage) return $apiPost;
// Handle country field
if (isset($post->body_nomarkup) && $this->config['country_flags']) {
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('/^[a-z]{2}$/', $modifiers['flag'])) {
$country = strtoupper($modifiers['flag']);
if (isset($modifiers['flag']) && isset($modifiers['flag alt']) && preg_match('/^[1-9a-z_-]{2,}$/', $modifiers['flag'])) {
$country = strtolower($modifiers['flag']);
if ($country) {
$apiPost['country'] = $country;
$apiPost['country_name'] = $modifiers['flag alt'];
@ -135,7 +135,7 @@ class Api {
$extra_files = array();
foreach ($post->files as $i => $f) {
if ($i == 0) continue;
$extra_file = array();
$this->translateFile($f, $post, $extra_file);

0
inc/instance-config.php

Loading…
Cancel
Save