aboutsummaryrefslogtreecommitdiffstats
path: root/include/poller.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-04-17 23:38:12 -0700
committerFriendika <info@friendika.com>2011-04-17 23:38:12 -0700
commitb81eefbffbf747b6ec3a65ca0ef771b1e88aa00c (patch)
tree2092578387d6821cc7e31280a4fc5aea5b3bbdc1 /include/poller.php
parent229eb9c681d62edc5faa63bb1d66046d123c3f35 (diff)
downloadvolse-hubzilla-b81eefbffbf747b6ec3a65ca0ef771b1e88aa00c.tar.gz
volse-hubzilla-b81eefbffbf747b6ec3a65ca0ef771b1e88aa00c.tar.bz2
volse-hubzilla-b81eefbffbf747b6ec3a65ca0ef771b1e88aa00c.zip
sv language had unquoted quotes in strings
Diffstat (limited to 'include/poller.php')
-rw-r--r--include/poller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/poller.php b/include/poller.php
index 4e1e30ad5..82ac89cf5 100644
--- a/include/poller.php
+++ b/include/poller.php
@@ -302,7 +302,7 @@ function poller_run($argv, $argc){
$mbox = email_connect($mailbox,$mailconf[0]['user'],$password);
unset($password);
if($mbox) {
- q("UPDATE `mailacct` SET `last_check` = '%d' WHERE `id` = %d AND `uid` = %d LIMIT 1",
+ q("UPDATE `mailacct` SET `last_check` = '%s' WHERE `id` = %d AND `uid` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($mailconf[0]['id']),
intval($importer_uid)