Merge remote-tracking branch 'upstream/develop' into 1607-api-generic-xml
This commit is contained in:
commit
313bc5b0d2
10
boot.php
10
boot.php
|
@ -1801,9 +1801,13 @@ function proc_run($cmd){
|
|||
$priority = 2;
|
||||
|
||||
if (!$found)
|
||||
q("INSERT INTO `workerqueue` (`function`, `parameter`, `created`, `priority`)
|
||||
VALUES ('%s', '%s', '%s', %d)",
|
||||
dbesc($funcname),
|
||||
// quickfix for the delivery problems, 2106-07-28
|
||||
/// @todo find better solution
|
||||
//q("INSERT INTO `workerqueue` (`function`, `parameter`, `created`, `priority`)
|
||||
// VALUES ('%s', '%s', '%s', %d)",
|
||||
// dbesc($funcname),
|
||||
q("INSERT INTO `workerqueue` (`parameter`, `created`, `priority`)
|
||||
VALUES ('%s', '%s', %d)",
|
||||
dbesc($parameters),
|
||||
dbesc(datetime_convert()),
|
||||
intval($priority));
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
// Attribution: http://www.krisbailey.com
|
||||
// license: unknown
|
||||
// modified: Mike Macgrivin mike@macgirvin.com 6-oct-2010 to support Salmon auto-discovery
|
||||
// modified: Tobias Diekershoff 28-jul-2016 adding an intval in line 162 to make PHP7 happy
|
||||
// from openssl public keys
|
||||
|
||||
|
||||
|
@ -159,7 +160,7 @@ class ASN_BASE {
|
|||
}
|
||||
$length = $tempLength;
|
||||
}
|
||||
$data = substr($string, $p, $length);
|
||||
$data = substr($string, $p, intval($length));
|
||||
$parsed[] = self::parseASNData($type, $data, $level, $maxLevels);
|
||||
$p = $p + $length;
|
||||
}
|
||||
|
|
|
@ -91,7 +91,7 @@
|
|||
{{if $keywords}}
|
||||
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
|
||||
<hr class="profile-separator">
|
||||
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12 text-muted">{$keywords_label}}</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12 text-muted">{{$keywords_label}}</div>
|
||||
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-12">{{$keywords}}</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
|
Loading…
Reference in a new issue