summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Kelly <ckdake@ckdake.com>2009-03-06 02:22:51 +0000
committerChris Kelly <ckdake@ckdake.com>2009-03-06 02:22:51 +0000
commit06780376876166b839047a370cf9144d06494416 (patch)
tree70450667a68cf35ac50d322be111a7868c437c30
parentee1572f324262319af4e73695f1193716c625a51 (diff)
Added json and filter as requirements
-rw-r--r--README4
-rw-r--r--core/controllers/file_proxy.php2
-rw-r--r--kohana/helpers/feed.php2
3 files changed, 4 insertions, 4 deletions
diff --git a/README b/README
index ff2a8a0e..4a85d7c0 100644
--- a/README
+++ b/README
@@ -27,8 +27,8 @@ Please send your feedback to gallery-devel@lists.sourceforge.net.
SUPPORTED CONFIGURATION:
- Platform: Linux / Unix.
- Web server: Apache 2.2 and newer.
- - PHP 5.2 and newer (PHP's safe_mode must be disabled and simplexml
- must be installed).
+ - PHP 5.2 and newer (PHP's safe_mode must be disabled and simplexml,
+ filter, and json must be installed).
- Database: MySQL 5 and newer.
diff --git a/core/controllers/file_proxy.php b/core/controllers/file_proxy.php
index 3cf915a6..66ef42eb 100644
--- a/core/controllers/file_proxy.php
+++ b/core/controllers/file_proxy.php
@@ -27,7 +27,7 @@
* input is sanitized against the database before we perform any file I/O.
*/
class File_Proxy_Controller extends Controller {
- public function __call($function, $args) {
+ public function __call($function, $args) {
// request_uri: http://example.com/gallery3/var/trunk/albums/foo/bar.jpg
$request_uri = $this->input->server("REQUEST_URI");
diff --git a/kohana/helpers/feed.php b/kohana/helpers/feed.php
index 53b1fd15..b19d6c8d 100644
--- a/kohana/helpers/feed.php
+++ b/kohana/helpers/feed.php
@@ -113,4 +113,4 @@ class feed_Core {
return $feed->asXML();
}
-} // End feed \ No newline at end of file
+} // End feed