projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ab40199
)
fix parse error
author
Michael J. Rubinsky
<mrubinsk@horde.org>
Wed, 26 May 2010 19:38:31 +0000
(15:38 -0400)
committer
Michael J. Rubinsky
<mrubinsk@horde.org>
Wed, 26 May 2010 19:38:31 +0000
(15:38 -0400)
ansel/image.php
patch
|
blob
|
history
diff --git
a/ansel/image.php
b/ansel/image.php
index
60431c4
..
fc297e6
100644
(file)
--- a/
ansel/image.php
+++ b/
ansel/image.php
@@
-426,7
+426,7
@@
case 'resize':
case 'crop':
$image->load('full');
$params = Horde_Util::getFormData('params');
- list($x1, $y1, $x2, $y2) = explode('.', $params
+ list($x1, $y1, $x2, $y2) = explode('.', $params
);
try {
$result = $image->crop($x1, $y1, $x2, $y2);
} catch (Ansel_Exception $e) {