diff options
Diffstat (limited to 'include/ws_functions.inc.php')
-rw-r--r-- | include/ws_functions.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ws_functions.inc.php b/include/ws_functions.inc.php index fd24b1136..31cc8662f 100644 --- a/include/ws_functions.inc.php +++ b/include/ws_functions.inc.php @@ -224,7 +224,7 @@ function ws_getMissingDerivatives($params, &$service) $where_clauses[] = 'id IN ('.implode(',',$params['ids']).')'; } - $query_model = 'SELECT id, path, representative_ext, width, height + $query_model = 'SELECT id, path, representative_ext, width,height,rotation FROM '.IMAGES_TABLE.' WHERE '.implode(' AND ', $where_clauses).' ORDER BY id DESC |