From 973a8235b4e72f5e1717ed5f5c4e55106d5e400a Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Mon, 29 Oct 2007 18:12:20 +1300 Subject: [PATCH] Remove extraneous bracket. --- inc/auth-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/auth-functions.php b/inc/auth-functions.php index 51d59e3a..202b203c 100644 --- a/inc/auth-functions.php +++ b/inc/auth-functions.php @@ -41,7 +41,7 @@ function CreateHomeCalendar( $username ) { $dav_etag = md5($usr->user_no . $calendar_path); $sql = "INSERT INTO collection (user_no, parent_container, dav_name, dav_etag, dav_displayname, is_calendar, "; $sql .= "created, modified) VALUES( ?, ?, ?, ?, ?, true, current_timestamp, current_timestamp );"; - $qry = new PgQuery( $sql, $this->user_no, $parent_path, $calendar_path, $dav_etag, $usr->fullname) ); + $qry = new PgQuery( $sql, $this->user_no, $parent_path, $calendar_path, $dav_etag, $usr->fullname); if ( $qry->Exec() ) { $c->messages[] = i18n("Home calendar added."); dbg_error_log("User",":Write: Created user's home calendar at '%s'", $calendar_path );