aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorCallum Macrae <callum@lynxphp.com>2011-08-19 10:45:03 +0100
committerIgor Wiedler <igor@wiedler.ch>2012-03-31 02:09:13 +0200
commitdce38f44de04bd7a1f91f8e57f6d266bd5e1af86 (patch)
tree8c12244b1c2e052e03c06675848bff5d2297859a /phpBB/common.php
parent94172b54dd09b28e19b4b12933b3f96e498d264a (diff)
downloadforums-dce38f44de04bd7a1f91f8e57f6d266bd5e1af86.tar
forums-dce38f44de04bd7a1f91f8e57f6d266bd5e1af86.tar.gz
forums-dce38f44de04bd7a1f91f8e57f6d266bd5e1af86.tar.bz2
forums-dce38f44de04bd7a1f91f8e57f6d266bd5e1af86.tar.xz
forums-dce38f44de04bd7a1f91f8e57f6d266bd5e1af86.zip
[ticket/10328] Added a JSON class.
The JSON class adds a consistent way to send JSON to the client, making it perfect for AJAX (jQuery automatically parses it). PHPBB3-10328
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index 129f7e4881..2c90ccf76c 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -74,6 +74,7 @@ if (!empty($load_extensions) && function_exists('dl'))
// Include files
require($phpbb_root_path . 'includes/class_loader.' . $phpEx);
+require($phpbb_root_path . 'includes/json.' . $phpEx);
require($phpbb_root_path . 'includes/session.' . $phpEx);
require($phpbb_root_path . 'includes/auth.' . $phpEx);