core: Apply changes to fix broken Travis builds

Travis-CI recently got updated, which causes existing builds to fail.
For example: https://travis-ci.org/RSS-Bridge/rss-bridge/builds/507568117

Indenting multi-line arguments of functions fixes it.
This commit is contained in:
logmanoriginal 2019-03-20 17:59:16 +01:00
parent 684558e276
commit 88aae6fd95
2 changed files with 23 additions and 20 deletions

View file

@ -215,6 +215,7 @@ $target_charset = DEFAULT_TARGET_CHARSET,
$stripRN = true, $stripRN = true,
$defaultBRText = DEFAULT_BR_TEXT, $defaultBRText = DEFAULT_BR_TEXT,
$defaultSpanText = DEFAULT_SPAN_TEXT){ $defaultSpanText = DEFAULT_SPAN_TEXT){
$content = getContents($url, $header, $opts); $content = getContents($url, $header, $opts);
return str_get_html($content, return str_get_html($content,
$lowercase, $lowercase,
@ -265,6 +266,7 @@ $target_charset = DEFAULT_TARGET_CHARSET,
$stripRN = true, $stripRN = true,
$defaultBRText = DEFAULT_BR_TEXT, $defaultBRText = DEFAULT_BR_TEXT,
$defaultSpanText = DEFAULT_SPAN_TEXT){ $defaultSpanText = DEFAULT_SPAN_TEXT){
Debug::log('Caching url ' . $url . ', duration ' . $duration); Debug::log('Caching url ' . $url . ', duration ' . $duration);
// Initialize cache // Initialize cache

View file

@ -29,6 +29,7 @@ function sanitize($html,
$tags_to_remove = array('script', 'iframe', 'input', 'form'), $tags_to_remove = array('script', 'iframe', 'input', 'form'),
$attributes_to_keep = array('title', 'href', 'src'), $attributes_to_keep = array('title', 'href', 'src'),
$text_to_keep = array()){ $text_to_keep = array()){
$htmlContent = str_get_html($html); $htmlContent = str_get_html($html);
/* /*