You are here

function _photos_down_label in Album Photos 6.2

Same name and namespace in other branches
  1. 7.3 inc/photos.down.inc \_photos_down_label()
1 call to _photos_down_label()
photos_down_page in inc/photos.down.inc

File

inc/photos.down.inc, line 115

Code

function _photos_down_label($label) {
  $t = photos_upload_info();
  foreach ($t['size'] as $v) {
    if ($v['name'] == $label) {
      return $label;
    }
  }
}