summaryrefslogtreecommitdiff
path: root/it.class
diff options
context:
space:
mode:
Diffstat (limited to 'it.class')
-rw-r--r--it.class4
1 files changed, 2 insertions, 2 deletions
diff --git a/it.class b/it.class
index 5190bde..a6e387b 100644
--- a/it.class
+++ b/it.class
@@ -1158,11 +1158,11 @@ static function pipe($cmd, $args = array())
/**
* Encodes data to json with unescaped slahes, unescape unicode and on devel pretty printing
- * @param $p['pretty'] Pretty-print json
+ * @param $p['pretty'] Force enable or disable pretty printing
*/
static function json_encode($data, $p = [])
{
- return json_encode($data, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | ($p['pretty'] || it::is_devel() ? JSON_PRETTY_PRINT : 0));
+ return json_encode($data, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | ($p['pretty'] ?? it::is_devel() ? JSON_PRETTY_PRINT : 0));
}
/**