1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

Fix undefined index and constant problems

This commit is contained in:
Fatih Orhan 2013-04-04 11:26:50 +03:00
parent 69fc326c98
commit 1f1a6157aa
2 changed files with 6 additions and 2 deletions

View file

@ -80,7 +80,7 @@ class Readability
public $debug = false;
protected $body = null; //
protected $bodyCache = null; // Cache the body HTML in case we need to re-use it later
protected $flags = FLAG_CLEAN_CONDITIONALLY; // 1 | 2 | 4; // Start with all flags set.
protected $flags = self::FLAG_CLEAN_CONDITIONALLY; // 1 | 2 | 4; // Start with all flags set.
protected $success = false; // indicates whether we were able to extract or not
/**