Kaynağa Gözat

[WordPressBridge] fix fatal errors

Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
Pierre Mazière 7 yıl önce
ebeveyn
işleme
4c3b80fca9
1 değiştirilmiş dosya ile 8 ekleme ve 3 silme
  1. 8 3
      bridges/WordPressBridge.php

+ 8 - 3
bridges/WordPressBridge.php

@@ -49,13 +49,18 @@ class WordPressBridge extends FeedExpander {
 		return $item;
 	}
 
+	public function getURI(){
+		$url = $this->getInput('url');
+		return $url;
+	}
+
 	public function collectData(){
-		if(substr($this->getInput(url),0,srlen('http'))!=='http'){
+		if(substr($this->getInput('url'),0,strlen('http'))!=='http'){
 			// just in case someone find a way to access local files by playing with the url
-			returnClientError('The url parameter must either refer to http or https protocol.');
+			$this->returnClientError('The url parameter must either refer to http or https protocol.');
 		}
 
-		$this->collectExpandableDatas($this->getURI().'/feed/atom');
+		$this->collectExpandableDatas($this->getURI().'/feed/atom/');
 
 	}