aboutsummaryrefslogtreecommitdiff
path: root/app/views/stats/index.phtml
AgeCommit message (Collapse)Author
2019-10-23Take advantage of PHP 5.4+ short echo (#2585)Gravatar Alexandre Alapetite
* Take advantage of PHP 5.4+ short echo https://php.net/migration54.new-features thanks to https://github.com/FreshRSS/FreshRSS/pull/2495 Use `<?= ?>` instead of `<?php echo; ?>` 10kB of code saved :-) Done with regular expression: ``` <\?php echo (.+?);? *\?> <?= \1 ?> ``` * Try Travis fix https://github.com/squizlabs/PHP_CodeSniffer/issues/2045#issuecomment-395238272
2018-06-22Explicit quotes decoding (#1947)Gravatar Alexandre Alapetite
* Explicit quotes decoding * Explicit htmlspecialchars_decode and htmlspecialchars
2016-08-07Problematic MySQL reserved keywordGravatar Alexandre Alapetite
`read` and `reads` are reserved keywords
2016-02-21CSP for statistics and formsGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/1075
2016-02-21CSP for statisticsGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/1075
2014-12-17Coding style endforeach (must be avoided)Gravatar Marien Fressinaud
2014-12-11Update i18n for statisticsGravatar Marien Fressinaud
2014-10-30Fix bug in stats/index.phtmlGravatar Marien Fressinaud
2014-10-30Fix coding style formatNumber and formatBytesGravatar Marien Fressinaud
2014-10-05Coding style (views)Gravatar Marien Fressinaud
See https://github.com/marienfressinaud/FreshRSS/issues/655
2014-09-29Add string delimiters for averages.Gravatar Alexis Degrugillier
Before, if the average was equal to 0, it was displayed on the graph but the label was not displayed. Now, the label is displayed.
2014-09-29Add an average per day for the 30 day periodGravatar Alexis Degrugillier
2014-09-29Add percent of total on top 10 feedsGravatar Alexis Degrugillier
2014-09-19Add a link on top feeds to their respective statsGravatar Marien Fressinaud
2014-09-18Improve stat designGravatar Marien Fressinaud
2014-06-15Refactor and formattingGravatar Alexis Degrugillier