From 208fc9db683c51e3bcf1f24d1e5e0200e0f32d96 Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Tue, 17 Mar 2009 18:56:01 +0000 Subject: Update Kohana to r4081. This resolves ticket http://dev.kohanaphp.com/ticket/1156 1156: "Table prefix gets append to column name" All tests pass. --- kohana/libraries/Image.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kohana/libraries/Image.php') diff --git a/kohana/libraries/Image.php b/kohana/libraries/Image.php index c9e82a1c..d740272d 100644 --- a/kohana/libraries/Image.php +++ b/kohana/libraries/Image.php @@ -292,7 +292,7 @@ class Image_Core { */ public function flip($direction) { - if ($direction !== self::HORIZONTAL AND $direction !== self::VERTICAL) + if ($direction !== Image::HORIZONTAL AND $direction !== Image::VERTICAL) throw new Kohana_Exception('image.invalid_flip'); $this->actions['flip'] = $direction; -- cgit v1.2.3