Skip to content

Commit

Permalink
Prevent PHP notice processing this debug line.
Browse files Browse the repository at this point in the history
  • Loading branch information
dracos committed Jun 11, 2014
1 parent be0661d commit 82efa3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/includes/data.php
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ public function _set_metadata($args) {
$key = $args["key"];
$value = $args["value"];

twfy_debug("DATA", "Setting: ".$type."[".$item."][".$key."] = '$value'");
twfy_debug("DATA", "Setting: ".$type."[".$item."][".$key."] = '" . print_r($value, 1) . "'");

$dataarray =& $this->$type;
$dataarray[$item][$key] = $value;
Expand Down

0 comments on commit 82efa3e

Please sign in to comment.