Skip to content
This repository has been archived by the owner on Aug 14, 2021. It is now read-only.

#99 fix usort() cmp function to return signed int, instead of bool #100

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Readability.php
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public function parse($html)

// No luck after removing flags, just return the longest text we found during the different loops
usort($this->attempts, function ($a, $b) {
return $a['textLength'] < $b['textLength'];
return $b['textLength'] - $a['textLength'];
});

// But first check if we actually have something
Expand Down