예제 #1
0
파일: item.php 프로젝트: nrbrt/news
 public function setUrl($url)
 {
     $url = trim($url);
     if (strpos($url, 'http') === 0 || strpos($url, 'magnet') === 0) {
         parent::setUrl($url);
     }
 }
예제 #2
0
파일: feed.php 프로젝트: nrbrt/news
 public function setUrl($url)
 {
     $url = trim($url);
     if (strpos($url, 'http') === 0) {
         parent::setUrl($url);
         $this->setUrlHash(md5($url));
     }
 }