mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-27 03:50:42 +03:00
Remove declaration of extractFromDelimiters, it is now a reusable function. Fixes #815
This commit is contained in:
parent
b397a42876
commit
458b826871
1 changed files with 0 additions and 10 deletions
|
@ -17,16 +17,6 @@ class FB2Bridge extends BridgeAbstract {
|
||||||
|
|
||||||
public function collectData(){
|
public function collectData(){
|
||||||
|
|
||||||
function extractFromDelimiters($string, $start, $end){
|
|
||||||
if(strpos($string, $start) !== false) {
|
|
||||||
$section_retrieved = substr($string, strpos($string, $start) + strlen($start));
|
|
||||||
$section_retrieved = substr($section_retrieved, 0, strpos($section_retrieved, $end));
|
|
||||||
return $section_retrieved;
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
//Utility function for cleaning a Facebook link
|
//Utility function for cleaning a Facebook link
|
||||||
$unescape_fb_link = function($matches){
|
$unescape_fb_link = function($matches){
|
||||||
if(is_array($matches) && count($matches) > 1) {
|
if(is_array($matches) && count($matches) > 1) {
|
||||||
|
|
Loading…
Reference in a new issue