diff options
Diffstat (limited to 'mod')
-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>'; |