diff options
author | redmatrix <mike@macgirvin.com> | 2016-10-03 22:01:14 -0700 |
---|---|---|
committer | redmatrix <mike@macgirvin.com> | 2016-10-03 22:01:14 -0700 |
commit | 4e07b4c0e8d5eefd934f559b33e10526519ec6e9 (patch) | |
tree | 89f0897b256853bc0082353019ae03a75802f72a /include/event.php | |
parent | ce6e81c68221a9f462af886626dc02fdfc26f8aa (diff) | |
download | volse-hubzilla-4e07b4c0e8d5eefd934f559b33e10526519ec6e9.tar.gz volse-hubzilla-4e07b4c0e8d5eefd934f559b33e10526519ec6e9.tar.bz2 volse-hubzilla-4e07b4c0e8d5eefd934f559b33e10526519ec6e9.zip |
even more backslashes
Diffstat (limited to 'include/event.php')
-rw-r--r-- | include/event.php | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/include/event.php b/include/event.php index 153654120..cbee2b759 100644 --- a/include/event.php +++ b/include/event.php @@ -362,28 +362,28 @@ function event_store_event($arr) { // The event changed. Update it. - $r = q("UPDATE `event` SET - `edited` = '%s', - `dtstart` = '%s', - `dtend` = '%s', - `summary` = '%s', - `description` = '%s', - `location` = '%s', - `etype` = '%s', - `adjust` = %d, - `nofinish` = %d, - `event_status` = '%s', - `event_status_date` = '%s', - `event_percent` = %d, - `event_repeat` = '%s', - `event_sequence` = %d, - `event_priority` = %d, - `event_vdata` = '%s', - `allow_cid` = '%s', - `allow_gid` = '%s', - `deny_cid` = '%s', - `deny_gid` = '%s' - WHERE `id` = %d AND `uid` = %d", + $r = q("UPDATE event SET + edited = '%s', + dtstart = '%s', + dtend = '%s', + summary = '%s', + description = '%s', + location = '%s', + etype = '%s', + adjust = %d, + nofinish = %d, + event_status = '%s', + event_status_date = '%s', + event_percent = %d, + event_repeat = '%s', + event_sequence = %d, + event_priority = %d, + event_vdata = '%s', + allow_cid = '%s', + allow_gid = '%s', + deny_cid = '%s', + deny_gid = '%s' + WHERE id = %d AND uid = %d", dbesc($arr['edited']), dbesc($arr['dtstart']), |