summaryrefslogtreecommitdiff
path: root/_darcs/pristine/extlib/facebook/jsonwrapper/jsonwrapper_inner.php
diff options
context:
space:
mode:
Diffstat (limited to '_darcs/pristine/extlib/facebook/jsonwrapper/jsonwrapper_inner.php')
-rw-r--r--_darcs/pristine/extlib/facebook/jsonwrapper/jsonwrapper_inner.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/_darcs/pristine/extlib/facebook/jsonwrapper/jsonwrapper_inner.php b/_darcs/pristine/extlib/facebook/jsonwrapper/jsonwrapper_inner.php
deleted file mode 100644
index 36a3f2863..000000000
--- a/_darcs/pristine/extlib/facebook/jsonwrapper/jsonwrapper_inner.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-require_once 'JSON/JSON.php';
-
-function json_encode($arg)
-{
- global $services_json;
- if (!isset($services_json)) {
- $services_json = new Services_JSON();
- }
- return $services_json->encode($arg);
-}
-
-function json_decode($arg)
-{
- global $services_json;
- if (!isset($services_json)) {
- $services_json = new Services_JSON();
- }
- return $services_json->decode($arg);
-}
-
-?>