Fix #2609 invalid value horz instead of hori in orientations enumeration

This commit is contained in:
Isaac Connor 2019-05-15 19:35:19 -04:00
parent 74d9f4f1aa
commit 1855ee441a
1 changed files with 1 additions and 1 deletions

View File

@ -389,7 +389,7 @@ $orientations = array(
'90' => translate('RotateRight'), '90' => translate('RotateRight'),
'180' => translate('Inverted'), '180' => translate('Inverted'),
'270' => translate('RotateLeft'), '270' => translate('RotateLeft'),
'horz' => translate('FlippedHori'), 'hori' => translate('FlippedHori'),
'vert' => translate('FlippedVert') 'vert' => translate('FlippedVert')
); );