Example #1
0
File: item.php Project: nrbrt/news
 public function setUrl($url)
 {
     $url = trim($url);
     if (strpos($url, 'http') === 0 || strpos($url, 'magnet') === 0) {
         parent::setUrl($url);
     }
 }
Example #2
0
File: feed.php Project: nrbrt/news
 public function setUrl($url)
 {
     $url = trim($url);
     if (strpos($url, 'http') === 0) {
         parent::setUrl($url);
         $this->setUrlHash(md5($url));
     }
 }