aboutsummaryrefslogtreecommitdiffstats
path: root/mod/filer.php
diff options
context:
space:
mode:
authorMichael Johnston <michaelgeorgejohnston@gmail.com>2012-04-04 23:08:16 -0400
committerMichael Johnston <michaelgeorgejohnston@gmail.com>2012-04-04 23:08:16 -0400
commitda0eb2d4c9bfad5eb329e9da7d0443f3f6327095 (patch)
treead54ff6a49e503a0218a301ef8e362fb6e08c6ea /mod/filer.php
parentc4ca21a7627f0f447b944f166fd3d2d4a7552f46 (diff)
downloadvolse-hubzilla-da0eb2d4c9bfad5eb329e9da7d0443f3f6327095.tar.gz
volse-hubzilla-da0eb2d4c9bfad5eb329e9da7d0443f3f6327095.tar.bz2
volse-hubzilla-da0eb2d4c9bfad5eb329e9da7d0443f3f6327095.zip
correct some filer dialog weirdness caused by introduction of categories
Diffstat (limited to 'mod/filer.php')
-rwxr-xr-xmod/filer.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/filer.php b/mod/filer.php
index 3cd1bfe22..c0cca9e6d 100755
--- a/mod/filer.php
+++ b/mod/filer.php
@@ -22,7 +22,8 @@ function filer_content(&$a) {
} else {
// return filer dialog
$filetags = get_pconfig(local_user(),'system','filetags');
- $filetags = explode("][", trim($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 -')),