diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-06-23 09:38:56 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-06-23 09:38:56 -0400 |
commit | 1d9613b682ad331d2de3b1a838a26dd36c821490 (patch) | |
tree | 7271c5288ab0c42355fb16303db127054ed1a10a /views/json | |
parent | 8ec596b8a5ffad878d830342b5f0212ad892fbeb (diff) | |
download | elgg-1d9613b682ad331d2de3b1a838a26dd36c821490.tar.gz elgg-1d9613b682ad331d2de3b1a838a26dd36c821490.tar.bz2 |
Refs #4504 made it easier to detect any problems caused by hack for json duplicate issue
Diffstat (limited to 'views/json')
-rw-r--r-- | views/json/export/entity.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/views/json/export/entity.php b/views/json/export/entity.php index cd5d74d41..36af5eaef 100644 --- a/views/json/export/entity.php +++ b/views/json/export/entity.php @@ -21,4 +21,5 @@ $export->url = $entity->getURL(); global $jsonexport; $jsonexport[$entity->getType()][$entity->getSubtype()][] = $export; -echo true; +// @todo hack to fix #4504 +echo "Fix for bug #4504"; |