You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by li...@apache.org on 2010/04/13 03:18:26 UTC

svn commit: r933459 - /shindig/trunk/php/src/social/converters/OutputJsonConverter.php

Author: lindner
Date: Tue Apr 13 01:18:25 2010
New Revision: 933459

URL: http://svn.apache.org/viewvc?rev=933459&view=rev
Log:
SHINDIG-1312 | Patch from Evgeny Bogdanov | Bug in json_format in OutputJsonConverter.php

Modified:
    shindig/trunk/php/src/social/converters/OutputJsonConverter.php

Modified: shindig/trunk/php/src/social/converters/OutputJsonConverter.php
URL: http://svn.apache.org/viewvc/shindig/trunk/php/src/social/converters/OutputJsonConverter.php?rev=933459&r1=933458&r2=933459&view=diff
==============================================================================
--- shindig/trunk/php/src/social/converters/OutputJsonConverter.php (original)
+++ shindig/trunk/php/src/social/converters/OutputJsonConverter.php Tue Apr 13 01:18:25 2010
@@ -106,7 +106,7 @@ class OutputJsonConverter extends Output
         
         case ':':
           if (! $in_string) {
-            $new_json .= ": ";
+            $new_json .= ":";
           } else {
             $new_json .= $char;
           }