summaryrefslogtreecommitdiff
path: root/classes
AgeCommit message (Collapse)Author
2023-10-11fix content_preview not shown in JSON shared feedAndrew Dolgov
2023-10-04batch feed editor: don't try to save feed_url or title, those aren't in the ↵Andrew Dolgov
dialog
2023-10-04fix feed_language being unnecessarily quoted in batch feed editorAndrew Dolgov
2023-09-18phpstan fixAndrew Dolgov
2023-09-18feed debugger: add content regexp matches to filter debug outputAndrew Dolgov
2023-08-12fix basename() being passed a NULL valueAndrew Dolgov
2023-08-03use non-deprecated variant of get_schema_version()Andrew Dolgov
2023-08-02 * logger: add optional HTML outputAndrew Dolgov
* feed debugger: add checkbox to dump feed XML
2023-06-14disable app passwords in the UI if auth_internal is not loadedAndrew Dolgov
2023-05-28public/getUnread: fix PHP8 warning if fresh optional parameter is not givenAndrew Dolgov
2023-05-27Fix version string for unsupported installationsChih-Hsuan Yen
For unsupported installations, $version['commit'] may not be defined, leading to a warning: E_WARNING (2) Undefined array key "commit" 1. classes/config.php(316): ttrss_error_handler(Undefined array key "commit", classes/config.php) 2. prefs.php(173): get_version_html()
2023-05-21Forgot delimiterdefkev
2023-05-21Update APIdefkev
Add site_url property for 9e169dc3aa7c7e30c11d7d3d1bbc4bc66fa39760
2023-05-06_order_to_override_query: fix custom sort plugins overriding each otherAndrew Dolgov
2023-04-13fix 881f8805bd behaving improperlyAndrew Dolgov
2023-04-10long year -> short yearAndrew Dolgov
2023-04-10we don't need BUILD_TIMESTAMP eitherAndrew Dolgov
2023-04-10move branch to version tooltipAndrew Dolgov
2023-04-10use short sha CI envvar for version.json compatibilityAndrew Dolgov
2023-04-10no more pointless txt files for versionAndrew Dolgov
2023-04-10a bit more diskcache tracingAndrew Dolgov
2023-04-10better static versionAndrew Dolgov
2023-04-10fix typoAndrew Dolgov
2023-04-10make jaeger service name configurableAndrew Dolgov
2023-04-09add tracing to UrlHelperAndrew Dolgov
2023-04-09a bit more tracingAndrew Dolgov
2023-04-09even more tracingAndrew Dolgov
2023-04-09more tracingAndrew Dolgov
2023-04-09Tracer: rework options to tagsAndrew Dolgov
2023-04-09add icatchallAndrew Dolgov
2023-04-09make phpstan happyAndrew Dolgov
2023-04-09some tracer class fixes / unhardcode jaeger IPAndrew Dolgov
2023-04-09exp: jaeger tracingAndrew Dolgov
2023-04-06Update config.php: $ttrss_version in private function _get_version() ↵Jan Pieter Kunst
replaced by $this->version
2023-04-06filters: allow matching on tags if there are no tagsAndrew Dolgov
2023-04-06make phpstan happyAndrew Dolgov
2023-04-06add simple autocompleter for tagsAndrew Dolgov
2023-03-31isLoggedIn adds a message to the system log when it returns false, fix for ↵Rodney Stromlund
php8+, removed empty test for bool conversion.
2023-03-29isLoggedIn adds a message to the system log when it returns false, fix for php8+Rodney Stromlund
2023-03-23 * auth_internal OTP form: fix double-urlencodeAndrew Dolgov
* post-login redirect: handle ?return in a less idiotic fashion
2023-03-07Merge pull request 'Replace special feed and category numbers with ↵fox
constants.' (#104) from wn/tt-rss:feature/special-feed-and-cat-consts into master Reviewed-on: https://dev.tt-rss.org/tt-rss/tt-rss/pulls/104
2023-03-07Change 'FEED_NOTHING' to 'FEED_DASHBOARD'.wn_
2023-03-05Replace special feed and category numbers with constants.wn_
2023-03-05Revert 7ed4fa4c1dbdd9df552cf6dd28907c6769911a0e and use @var instead.wn_
PHPStan had trouble recognizing that ['items'] might have elements added.
2023-03-05Remove unused 'Prefs::_delete()'.wn_
Related to dabb85c7dd82d2e97e400e0339d312030d4a1b4b.
2023-03-05Address PHPStan warning about unused private method 'Prefs::_delete()'.wn_
2023-03-05Tweak to appease PHPStan in 'Pref_Feeds::_makefeedtree()'.wn_
PHPStan flagged the 'count()' below this with: Comparison operation '>' between 0 and 0 is always false.
2023-03-05Address PHPStan 'right side always true' in 'PluginHost::lookup_command()'.wn_
Since 'PluginHost::add_command()' is currently the only way to add to this private array, and it always sets an array, this is reasonably safe.
2023-03-05Address PHPStan 'right side always true' in FeedItem_RSS.wn_
2023-03-05API:Andrew Dolgov
- sharedToPublished: add optional sanitize parameter (defaults to true) if disabled, allows inserting HTML into shared article content; - clean() already invokes strip_tags() so it's pointless to do both;