]> git.mxchange.org Git - friendica.git/blobdiff - mod/filer.php
Coding convention continued:
[friendica.git] / mod / filer.php
old mode 100755 (executable)
new mode 100644 (file)
index c0cca9e..1b55893
@@ -5,9 +5,9 @@ require_once('include/bbcode.php');
 require_once('include/items.php');
 
 
-function filer_content(&$a) {
+function filer_content(App &$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                killme();
        }
 
@@ -24,6 +24,7 @@ function filer_content(&$a) {
                $filetags = get_pconfig(local_user(),'system','filetags');
                $filetags = file_tag_file_to_list($filetags,'file');
                 $filetags = explode(",", $filetags);
+
                $tpl = get_markup_template("filer_dialog.tpl");
                $o = replace_macros($tpl, array(
                        '$field' => array('term', t("Save to Folder:"), '', '', $filetags, t('- select -')),