diff options
author | friendica <info@friendica.com> | 2014-03-23 17:07:21 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-03-23 17:07:21 -0700 |
commit | 02af02118d1b55e9fcd7cd60a23fa5799335d075 (patch) | |
tree | 88804522c5e649106abb6b6ef7269905f5025504 | |
parent | 34eb79e6ba2255113eca6d30ae6c65b28d63abfa (diff) | |
download | volse-hubzilla-02af02118d1b55e9fcd7cd60a23fa5799335d075.tar.gz volse-hubzilla-02af02118d1b55e9fcd7cd60a23fa5799335d075.tar.bz2 volse-hubzilla-02af02118d1b55e9fcd7cd60a23fa5799335d075.zip |
photos upload - remove phantom duplicated blank album name from selection list
-rw-r--r-- | mod/photos.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mod/photos.php b/mod/photos.php index e2279188a..2740f91f9 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -535,14 +535,13 @@ function photos_content(&$a) { $albums = photos_albums_list($a->data['channel'],$a->data['observer']); - $selname = (($datum) ? hex2bin($datum) : ''); $albumselect = '<select id="photos-upload-album-select" name="album" size="4">'; $albumselect .= '<option value="" ' . ((! $selname) ? ' selected="selected" ' : '') . '> </option>'; if(count($albums)) { foreach($albums as $album) { - if($album['text'] === '') + if(! $album['text']) continue; $selected = (($selname === $album['text']) ? ' selected="selected" ' : ''); $albumselect .= '<option value="' . $album['text'] . '"' . $selected . '>' . $album['text'] . '</option>'; |