mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-29 14:48:52 +03:00
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:
parent
684558e276
commit
88aae6fd95
2 changed files with 23 additions and 20 deletions
|
@ -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
|
||||||
|
|
|
@ -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);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue