issue #466, sql typo

This commit is contained in:
redmatrix 2016-07-28 13:10:19 -07:00
parent 02fc082e45
commit 4ce8f965aa
3 changed files with 3 additions and 3 deletions

View File

@ -173,7 +173,7 @@ class Ping extends \Zotlabs\Web\Controller {
); );
break; break;
case 'all_events': case 'all_events':
$r = q("update event set `dimissed` = 1 where `dismissed` = 0 and uid = %d AND dtstart < '%s' AND dtstart > '%s' ", $r = q("update event set `dismissed` = 1 where `dismissed` = 0 and uid = %d AND dtstart < '%s' AND dtstart > '%s' ",
intval(local_channel()), intval(local_channel()),
dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now + ' . intval($evdays) . ' days')), dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now + ' . intval($evdays) . ' days')),
dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now - 1 days')) dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now - 1 days'))

View File

@ -13,7 +13,7 @@ require_once('include/api_auth.php');
/* /*
* *
* Red API. Loosely based on and possibly compatible with a Twitter-Like API but all similarities end there. * Hubzilla API. Loosely based on and possibly compatible with Twitter-Like (v1.0) API but all similarities end there.
* *
*/ */

View File

@ -159,7 +159,7 @@ class ASN_BASE {
} }
$length = $tempLength; $length = $tempLength;
} }
$data = substr($string, $p, $length); $data = substr($string, $p, intval($length));
$parsed[] = self::parseASNData($type, $data, $level, $maxLevels); $parsed[] = self::parseASNData($type, $data, $level, $maxLevels);
$p = $p + $length; $p = $p + $length;
} }