diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-06-13 20:49:50 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-06-13 20:49:50 -0700 |
commit | 6f443a819b360a89c53004d3bf860fcedd88ae2e (patch) | |
tree | 370e70c23152c294c7dfaf917f253899a6553c33 /modules/gallery/helpers/site_status.php | |
parent | 6b01022a97e5fbd30d8f9a14b785e3e25ec7c2d4 (diff) |
Change single to double quotes.
Diffstat (limited to 'modules/gallery/helpers/site_status.php')
-rw-r--r-- | modules/gallery/helpers/site_status.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/helpers/site_status.php b/modules/gallery/helpers/site_status.php index 759eb382..13c42dda 100644 --- a/modules/gallery/helpers/site_status.php +++ b/modules/gallery/helpers/site_status.php @@ -100,7 +100,7 @@ class site_status_Core { } $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>"; } |