Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Dev Fixed small bug where LimeDebug would use same script as LimeScri…
…pt, causing a missing block.
  • Loading branch information
SamMousa committed Mar 19, 2013
1 parent 552b867 commit dfe32f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/extensions/LimeDebug/LimeDebug.php
Expand Up @@ -17,7 +17,7 @@ public function run()
$json = json_encode($data, JSON_FORCE_OBJECT);
$script = "LSdebug = $json;\n";
$script .= "console.dir(LSdebug)\n";
App()->getClientScript()->registerScript('LimeScript', $script, CClientScript::POS_HEAD);
App()->getClientScript()->registerScript('LimeDebug', $script, CClientScript::POS_HEAD);
}
}
}
Expand Down

0 comments on commit dfe32f1

Please sign in to comment.