diff options
author | Michael Johnston <michaelgeorgejohnston@gmail.com> | 2012-04-04 23:08:16 -0400 |
---|---|---|
committer | Michael Johnston <michaelgeorgejohnston@gmail.com> | 2012-04-04 23:08:16 -0400 |
commit | da0eb2d4c9bfad5eb329e9da7d0443f3f6327095 (patch) | |
tree | ad54ff6a49e503a0218a301ef8e362fb6e08c6ea /mod/filer.php | |
parent | c4ca21a7627f0f447b944f166fd3d2d4a7552f46 (diff) | |
download | volse-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-x | mod/filer.php | 3 |
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 -')), |