Browse Source

Fix thumbnail width/height in API

The API currently has the thumbnail widths and heights switched around
pull/40/head
hatstand0 10 years ago
committed by czaks
parent
commit
7ea5b129e6
  1. 4
      inc/api.php

4
inc/api.php

@ -41,8 +41,8 @@ class Api {
);
$this->fileFields = array(
'thumbheight' => 'tn_w',
'thumbwidth' => 'tn_h',
'thumbheight' => 'tn_h',
'thumbwidth' => 'tn_w',
'height' => 'w',
'width' => 'h',
'size' => 'fsize',

Loading…
Cancel
Save