]> git.mxchange.org Git - friendica.git/commitdiff
make use of Config class
authorrabuzarus <>
Sat, 25 Mar 2017 20:07:12 +0000 (21:07 +0100)
committerrabuzarus <>
Sat, 25 Mar 2017 20:07:12 +0000 (21:07 +0100)
mod/wall_upload.php

index 3e88bd76b537404cf5b8bb510a9fe9f319f84bda..d29efecc6ad2319eb86365a7fae727e9fa3f0e36 100644 (file)
@@ -9,8 +9,11 @@
  * to the url
  */
 
+use \Friendica\Core\Config;
+
 require_once 'include/Photo.php';
 
+
 function wall_upload_post(App $a, $desktopmode = true) {
 
        logger("wall upload: starting new upload", LOGGER_DEBUG);
@@ -172,7 +175,7 @@ function wall_upload_post(App $a, $desktopmode = true) {
        logger("File upload src: " . $src . " - filename: " . $filename .
                " - size: " . $filesize . " - type: " . $filetype, LOGGER_DEBUG);
 
-       $maximagesize = get_config('system', 'maximagesize');
+       $maximagesize = Config::get('system', 'maximagesize');
 
        if (($maximagesize) && ($filesize > $maximagesize)) {
                $msg = sprintf(t('Image exceeds size limit of %s'), formatBytes($maximagesize));
@@ -225,7 +228,7 @@ function wall_upload_post(App $a, $desktopmode = true) {
        $ph->orient($src);
        @unlink($src);
 
-       $max_length = get_config('system', 'max_image_length');
+       $max_length = Config::get('system', 'max_image_length');
        if (! $max_length) {
                $max_length = MAX_IMAGE_LENGTH;
        }