Author: jfthomps
Date: Wed Nov 26 21:30:25 2014
New Revision: 1641945
URL: http://svn.apache.org/r1641945
Log:
(no JIRA)
messed up in last commit (1641942) - left out a ';'
utils.php: modified getVariable: added ';' at end of "timestamp, " line
Modified:
vcl/trunk/web/.ht-inc/utils.php
Modified: vcl/trunk/web/.ht-inc/utils.php
URL:
http://svn.apache.org/viewvc/vcl/trunk/web/.ht-inc/utils.php?rev=1641945&r1=1641944&r2=1641945&view=diff
==============================================================================
--- vcl/trunk/web/.ht-inc/utils.php (original)
+++ vcl/trunk/web/.ht-inc/utils.php Wed Nov 26 21:30:25 2014
@@ -11625,7 +11625,7 @@ function getVariable($key, $default=NULL
$query = "SELECT serialization, ";
if($incparams)
$query .= "setby, "
- . "timestamp, "
+ . "timestamp, ";
$query .= "value ";
$query .= "FROM variable "
. "WHERE name = '$key'";