aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/Readability.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2013-04-04 09:25:40 -0700
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2013-04-04 09:25:40 -0700
commit56dacad5074a21ae65fbf4fd6a625f259cc6d1f9 (patch)
tree6a0e4391026e62254ecda9b9b59ee651e93ec943 /inc/Readability.php
parent634cf566f5d6aa92ca2c409932181a76bcfb91d0 (diff)
parent1f1a6157aa480553afba0e1ed2537fff94dc7a6b (diff)
downloadwallabag-56dacad5074a21ae65fbf4fd6a625f259cc6d1f9.tar.gz
wallabag-56dacad5074a21ae65fbf4fd6a625f259cc6d1f9.tar.zst
wallabag-56dacad5074a21ae65fbf4fd6a625f259cc6d1f9.zip
Merge pull request #5 from fatihorhan/master
Some fixes and improvements
Diffstat (limited to 'inc/Readability.php')
-rwxr-xr-xinc/Readability.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/Readability.php b/inc/Readability.php
index 52a37d50..c50bf2ef 100755
--- a/inc/Readability.php
+++ b/inc/Readability.php
@@ -80,7 +80,7 @@ class Readability
80 public $debug = false; 80 public $debug = false;
81 protected $body = null; // 81 protected $body = null; //
82 protected $bodyCache = null; // Cache the body HTML in case we need to re-use it later 82 protected $bodyCache = null; // Cache the body HTML in case we need to re-use it later
83 protected $flags = FLAG_CLEAN_CONDITIONALLY; // 1 | 2 | 4; // Start with all flags set. 83 protected $flags = self::FLAG_CLEAN_CONDITIONALLY; // 1 | 2 | 4; // Start with all flags set.
84 protected $success = false; // indicates whether we were able to extract or not 84 protected $success = false; // indicates whether we were able to extract or not
85 85
86 /** 86 /**