Minor code cleanup, add newer php version for travis tests
timw4mail/HummingBirdAnimeClient/develop This commit looks good Details

This commit is contained in:
Timothy Warren 2019-08-16 10:31:31 -04:00
parent f3b42ae056
commit c6b74e2775
3 changed files with 5 additions and 3 deletions

View File

@ -6,6 +6,8 @@ install:
php: php:
- 7.1 - 7.1
- 7.2 - 7.2
- 7.3
- 7.4
- hhvm - hhvm
- nightly - nightly

View File

@ -154,7 +154,7 @@ class Controller {
if (null === $url) if (null === $url)
{ {
$url = $util->isViewPage() $url = $util->isViewPage()
? $this->request->getUri()->__toString() ? (string) $this->request->getUri()
: $serverParams['HTTP_REFERER']; : $serverParams['HTTP_REFERER'];
} }
@ -245,7 +245,7 @@ class Controller {
$csp = [ $csp = [
"default-src 'self'", "default-src 'self'",
"object-src 'none'", "object-src 'none'",
"frame-src *.youtube.com", 'frame-src *.youtube.com',
]; ];
$view->addHeader('Content-Security-Policy', implode('; ', $csp)); $view->addHeader('Content-Security-Policy', implode('; ', $csp));

View File

@ -44,7 +44,7 @@ class API {
array_multisort($sort, SORT_ASC, $array); array_multisort($sort, SORT_ASC, $array);
// Re-key array items by their ids // Re-key array items by their ids
if (array_key_exists('id', $array[0])) if (array_key_exists('id', (array)$array[0]))
{ {
$keyed = []; $keyed = [];