From b8daad77176ba880da315a98ea69dde2bec2c8f3 Mon Sep 17 00:00:00 2001 From: Repox Date: Mon, 21 Nov 2011 14:08:52 +0100 Subject: Added 'opera mobi' to user agents making it identified as 'Opera Mini'. Fixes issue #683 --- application/config/user_agents.php | 1 + 1 file changed, 1 insertion(+) diff --git a/application/config/user_agents.php b/application/config/user_agents.php index 03cba9bc8..c3c7eaecb 100644 --- a/application/config/user_agents.php +++ b/application/config/user_agents.php @@ -174,6 +174,7 @@ $mobiles = array( 'mobilexplorer' => "Mobile Explorer", 'operamini' => "Opera Mini", 'opera mini' => "Opera Mini", + 'opera mobi' => "Opera Mini", // Other 'digital paths' => "Digital Paths", -- cgit v1.2.3-24-g4f1b From d0c09b910df94f3e8b0ad715f7e5cec844801bf8 Mon Sep 17 00:00:00 2001 From: David Dotson Date: Mon, 21 Nov 2011 09:56:39 -0600 Subject: Typo in "Watermarking Preferences". Configuration parameter is "wm_padding", but it is listed as "padding". --- user_guide_src/source/libraries/image_lib.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_guide_src/source/libraries/image_lib.rst b/user_guide_src/source/libraries/image_lib.rst index 300cbef31..14bd128a6 100644 --- a/user_guide_src/source/libraries/image_lib.rst +++ b/user_guide_src/source/libraries/image_lib.rst @@ -360,7 +360,7 @@ Preference Default Value Options Description image headers. **quality** 90% 1 - 100% Sets the quality of the image. The higher the quality the larger the file size. -**padding** None A number The amount of padding, set in pixels, that will be applied to the +**wm_padding** None A number The amount of padding, set in pixels, that will be applied to the watermark to set it away from the edge of your images. **wm_vrt_alignment** bottom top, middle, bottom Sets the vertical alignment for the watermark image. **wm_hor_alignment** center left, center, right Sets the horizontal alignment for the watermark image. -- cgit v1.2.3-24-g4f1b From 0ec05c1e582805d9b71f06e357846abeaf0e40a4 Mon Sep 17 00:00:00 2001 From: Chris Rosser Date: Mon, 21 Nov 2011 17:56:13 +0000 Subject: Added HTTP status code 422 (Unprocessable Entity) to set_status_header() --- system/core/Common.php | 1 + 1 file changed, 1 insertion(+) diff --git a/system/core/Common.php b/system/core/Common.php index e43bb8db3..b0921fe0c 100644 --- a/system/core/Common.php +++ b/system/core/Common.php @@ -419,6 +419,7 @@ if ( ! function_exists('set_status_header')) 415 => 'Unsupported Media Type', 416 => 'Requested Range Not Satisfiable', 417 => 'Expectation Failed', + 422 => 'Unprocessable Entity', 500 => 'Internal Server Error', 501 => 'Not Implemented', -- cgit v1.2.3-24-g4f1b