]> git.mxchange.org Git - friendica.git/commitdiff
Typo
authorPierre Rudloff <contact@rudloff.pro>
Sat, 23 Dec 2017 00:32:47 +0000 (01:32 +0100)
committerPierre Rudloff <contact@rudloff.pro>
Sat, 23 Dec 2017 00:32:47 +0000 (01:32 +0100)
include/api.php

index d7e383d53c46d1b8d7217d71ccdf718da8e561cc..deb6a76da40253ee53ef8b1f7e60e4da12d38332 100644 (file)
@@ -3311,7 +3311,7 @@ function api_statusnet_config($type)
        $private = ((Config::get('system', 'block_public')) ? 'true' : 'false');
        $textlimit = (string) (($a->config['max_import_size']) ? $a->config['max_import_size'] : 200000);
        if ($a->config['api_import_size']) {
-               $texlimit = string($a->config['api_import_size']);
+               $textlimit = (string) $a->config['api_import_size'];
        }
        $ssl = ((Config::get('system', 'have_ssl')) ? 'true' : 'false');
        $sslserver = (($ssl === 'true') ? str_replace('http:', 'https:', System::baseUrl()) : '');