Fixed syntax error, .= not +=
authorDylan Lloyd <dylan@psu.edu>
Wed, 15 Jun 2011 06:35:50 +0000 (02:35 -0400)
committerDylan Lloyd <dylan@psu.edu>
Wed, 15 Jun 2011 06:35:50 +0000 (02:35 -0400)
index.php

index 8245ec2..e096a9c 100644 (file)
--- a/index.php
+++ b/index.php
@@ -363,7 +363,7 @@ class note extends cms {
       ";
 
     if (isset($_GET['comments'])) {
-      $this->scripts += "
+      $this->scripts .= "
         <script type='text/javascript' src='http://www.google.com/recaptcha/api/js/recaptcha_ajax.js'></script>
         <script type='text/javascript' src='/includes/comment.js'></script>";
     }