Browse Source

fix bookmarks update

windhamdavid 2 years ago
parent
commit
b891edb649
1 changed files with 1 additions and 1 deletions
  1. 1 1
      inc/utils.php

+ 1 - 1
inc/utils.php

@@ -104,7 +104,7 @@ function bookmarks_all() {
 	$url = 'https://davidawindham.com/bookmarks/';
 	$html = file_get_html($url);
 	$i = 0;
-	foreach ($html->find('.linklist-item-title a') as $li) {
+	foreach ($html->find('.linklist-item-title h2 a') as $li) {
 	    if (!empty($html)) {
 			echo $li . '<br />';
 		}