summaryrefslogtreecommitdiff
path: root/bridges/GithubSearchBridge.php
diff options
context:
space:
mode:
Diffstat (limited to 'bridges/GithubSearchBridge.php')
-rw-r--r--bridges/GithubSearchBridge.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/GithubSearchBridge.php b/bridges/GithubSearchBridge.php
index fe8a721..fd90934 100644
--- a/bridges/GithubSearchBridge.php
+++ b/bridges/GithubSearchBridge.php
@@ -24,7 +24,7 @@ class GithubSearchBridge extends BridgeAbstract {
$html = getSimpleHTMLDOM($url)
or returnServerError('Error while downloading the website content');
- foreach($html->find('div.repo-list-item') as $element) {
+ foreach($html->find('li.repo-list-item') as $element) {
$item = array();
$uri = $element->find('h3 a', 0)->href;