Navigation Menu

Skip to content

Commit

Permalink
Change single to double quotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
bharat committed Jun 14, 2010
1 parent 6b01022 commit 6f443a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/gallery/helpers/site_status.php
Expand Up @@ -100,7 +100,7 @@ static function get() {
}
$buf = array();
foreach (ORM::factory("message")->find_all() as $msg) {
$value = str_replace('__CSRF__', access::csrf_token(), $msg->value);
$value = str_replace("__CSRF__", access::csrf_token(), $msg->value);
$buf[] = "<li class=\"" . self::severity_class($msg->severity) . "\">$value</li>";
}

Expand Down

0 comments on commit 6f443a8

Please sign in to comment.