jision / rock-php

Automatically exported from code.google.com/p/rock-php
0 stars 0 forks source link

Quick bugfix #148

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
RockMongo v1.1.0

app/funcs/functions.php (line 111)

  if($in_string) { ... }

should be

  if(!$in_string) { ... }

Colons (:) inside the JSON string are showing up as ": ", should be ":".

Original issue reported on code.google.com by dav...@performancesolutions.co.za on 6 Jul 2011 at 1:46

GoogleCodeExporter commented 8 years ago
Sorry, I realised now that rather line 112

  $new_json .= ": ";

should be

  $new_json .= ":";

(without the extra space). I think this is actually the correct fix, sorry.
Line 111 is fine as is.

Original comment by dav...@performancesolutions.co.za on 6 Jul 2011 at 1:51

GoogleCodeExporter commented 8 years ago

Original comment by anton.ze...@gmail.com on 8 Aug 2011 at 11:57