summaryrefslogtreecommitdiff
path: root/classes
AgeCommit message (Collapse)Author
2021-11-01Address PHPStan warning in 'classes/feeds.php'.wn_
------ ------------------------------------ Line classes/feeds.php ------ ------------------------------------ 8 Property Feeds::$params is unused. ------ ------------------------------------
2021-11-01Address PHPStan warning in 'classes/feeditem/common.php'.wn_
------ --------------------------------------------- Line classes/feeditem/common.php ------ --------------------------------------------- 194 No error to ignore is reported on line 194. ------ ---------------------------------------------
2021-11-01Address PHPStan warnings in 'classes/db.php'.wn_
------ -------------------------------------------------- Line classes/db.php ------ -------------------------------------------------- 7 Property Db::$link is unused. 86 Property Db::pdo (PDO) in empty() is not falsy. ------ --------------------------------------------------
2021-11-01Address PHPStan warnings in 'classes/config.php'.wn_
------ ----------------------------------------------------------------------- Line classes/config.php ------ ----------------------------------------------------------------------- 3 Constant Config::_ENVVAR_PREFIX is unused. 177 Constant Config::_DEFAULTS is unused. 237 Property Config::$schema_version is never read, only written. 352 Property Config::$migrations (Db_Migrations) in empty() is not falsy. ------ -----------------------------------------------------------------------
2021-10-26HOOK_ARTICLE_BUTTON/HOOK_ARTICLE_LEFT_BUTTON: only try to parse markup if ↵Andrew Dolgov
its actually there
2021-10-24css: make plugin button container a flexboxAndrew Dolgov
backend: pass plugin button generated code through domdocument to ensure its correctness; set data-plugin-name attribute on children to make them sortable via css
2021-10-22minor phpstan tweaksAndrew Dolgov
2021-10-22pluginhost: update comments for HOOK_ constants to use phpdoc syntax; add ↵Andrew Dolgov
HOOK_PRE_SUBSCRIBE
2021-10-15Fix undefined array key "output" when adding new labelPhilip Klempin
2021-10-15OPML improvements/fixes:Andrew Dolgov
* allow CLI import of OPML files (--opml-import) * visualize OPML structure when importing * add strict type hints to most OPML class methods
2021-10-10feed tree context menu: add an entry to open originating websiteAndrew Dolgov
2021-09-24properly sanitize video poster attributeAndrew Dolgov
2021-09-08OPML: multiple fixesAndrew Dolgov
- remove unused integer indexes when exporting filters as JSON - fix warning when importing filters without rules - properly assign category IDs for category filter rules - fix warning: check if outline attributes like xmlUrl are set before trying to use them - fix warning: don't try to use libxml_disable_entity_loader on PHP 8
2021-09-08classes/opml: fix indentation; when importing, don't produce warningAndrew Dolgov
on filters with no rules defined.
2021-09-02fix label ordering in feed treeAndrew Dolgov
2021-08-25fix password recoveryjmechnich
2021-08-23block useless usort() E_DEPRECATED for the time beingAndrew Dolgov
2021-08-23remove SELF_USER_AGENT custom constant, replaced with configurable ↵Andrew Dolgov
Config::HTTP_USER_AGENT / Config::get_user_agent()
2021-08-23Pref_Feeds:calculate_children_count - fix operator precedenceAndrew Dolgov
2021-08-18fix broken feed tree generation when categories are disabledAndrew Dolgov
2021-08-17Make prefs feed search case-insensitive.wn_
Previously the search query had to match lower title or feed_url (i.e. searching w/ uppercase wouldn't match).
2021-08-17Use ORM more in 'classes/pref/feeds.php'.wn_
2021-07-28fix rendering of category filters on UncategorizedAndrew Dolgov
2021-06-19Rewrite feed entry link as href contentPhilip Klempin
2021-06-18Fix operator precedencePhilip Klempin
2021-06-18revise previous a little bit moreAndrew Dolgov
2021-06-18revise previous a little bitAndrew Dolgov
2021-06-18UrlHelper::rewrite_relative():Andrew Dolgov
- support invoking specifying owner URL element/attribute - restrict mailto/magnet/tel schemes for A href - allow some data: base64 image types for IMG src Sanitizer::sanitize(): - when checking href and src attributes, pass element tagname and attribute to rewrite_relative()
2021-06-17Merge pull request 'Skip all urls with schemes different from base_url in ↵fox
rewrite_relative' (#38) from klempin/tt-rss:fix/mailto into master Reviewed-on: https://git.tt-rss.org/fox/tt-rss/pulls/38
2021-06-16Skip URI base on ALLOWED_RELATIVE_SCHEMES in rewrite_relativePhilip Klempin
2021-06-16add settings profile cloningAndrew Dolgov
2021-05-21UrlHelper::rewrite_relative: don't try to feed NULL to with_trailing_slash()Andrew Dolgov
2021-05-21feeditem_atom: support xml:base for enclosures and entry contentAndrew Dolgov
UrlHelper::rewrite_relative: use base URL path if relative url path is not absolute (experimental)
2021-05-20add hotkeys J/K to move between unread feedsAndrew Dolgov
2021-05-18API: bump api level to 17Andrew Dolgov
2021-05-18provide base configuration object in login response to skip on initial getConfigAndrew Dolgov
2021-05-18Merge branch 'master' of git.tt-rss.org:fox/tt-rssAndrew Dolgov
2021-05-18API: return custom sort types in getConfigAndrew Dolgov
2021-05-11checking for PDO there is rather uselessAndrew Dolgov
2021-05-11sanity check: in single user mode, only test for admin user if migrations ↵Andrew Dolgov
have been completed
2021-05-11Improve missing token checkJacek Tomasiak
Avoid "E_NOTICE (8) (classes/userhelper.php:78) Undefined index: csrf_token" in logs.
2021-05-07include archived articles (which lack associated feed id) when browsing by tagAndrew Dolgov
2021-05-07add urlhelper to extract youtube video id from urlAndrew Dolgov
2021-04-19FIX: public.php - Undefined index: feed_titleOliver Haucke
2021-04-12functions_enabled: trim spaces from disable_functions php ini settingAndrew Dolgov
2021-04-09pluginhost: add profile_get/profile_set helpersAndrew Dolgov
2021-03-29Merge branch 'master' of git.tt-rss.org:fox/tt-rssAndrew Dolgov
2021-03-29OTP: generate longer secrets, also make them easier to read/copyAndrew Dolgov
2021-03-27Adjust quotation marks in search query before 'str_getcsv'.wn_
This moves a potential first quotation mark to before the associated keyword to ensure 'str_getcsv' groups the key and value correctly. Without this 'str_getcsv' would split on potential spaces within the quoted value.
2021-03-23Revert "clip max displayed counter value to 9999 because of container node ↵Andrew Dolgov
width" This reverts commit c34a4c85bde242c991baf1f383694e9a4fa82940.