diff options
| author | 2014-10-22 18:33:46 +0200 | |
|---|---|---|
| committer | 2014-10-22 18:33:46 +0200 | |
| commit | 8a6ad05ebacb6bf6c0f6afd0afe54a29a0a18ee9 (patch) | |
| tree | 7b7f84f6cc3e4278ee18f7afd4e272a31cd9e5d7 /app/Models/Entry.php | |
| parent | 9551145200b61717fdeb11007e1da541ddf93f0f (diff) | |
Remove STATE_STRICT
See https://github.com/marienfressinaud/FreshRSS/issues/634
Diffstat (limited to 'app/Models/Entry.php')
| -rw-r--r-- | app/Models/Entry.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/Models/Entry.php b/app/Models/Entry.php index ee94d1110..346c98a92 100644 --- a/app/Models/Entry.php +++ b/app/Models/Entry.php @@ -1,12 +1,11 @@ <?php class FreshRSS_Entry extends Minz_Model { - const STATE_ALL = 0; const STATE_READ = 1; const STATE_NOT_READ = 2; + const STATE_ALL = 3; const STATE_FAVORITE = 4; const STATE_NOT_FAVORITE = 8; - const STATE_STRICT = 16; private $id = 0; private $guid; |
