aboutsummaryrefslogtreecommitdiffstats
path: root/include (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-08-29next version is 2.8.3plegall1-1/+1
2016-07-26typo fixed in commentplegall1-1/+1
2016-07-26fixes #376, remove option ONLY_FULL_GROUP_BY in sql_modeplegall1-0/+13
based on solution provided by Mercury_LABBS on piwigo.org forums
2016-07-07next release is 2.8.22.8.22.8plegall1-1/+1
2016-07-05bug #476, set http code to 401 only when not redirectingplegall1-1/+2
2016-07-04feature #478, improve performancesplegall1-1/+5
By reducing frequency of update on user_infos.last_visit. Instead of updating on each page visit, we wait at least a session length, which is 30 minutes by default. @modus75 suggested to use function log_user instead, which is a better design. Unfortunately it would lead to much less accuracy, because on many systems PHP sessions are never purged (Debian with default settings). It would be possible to come back everyday and never update the last_visit, as long as the web browser is not closed.
2016-05-31fixes #478, add new column user_infos.last_visitplegall3-31/+77
This will speed up user edit popin opening, by avoiding to search in history for the last user visit. The column user_infos.last_visit_from_history true/false says if the last_visit has already been search in history (to avoid making it twice). I could have implemented the search of last_visit for all users in the migration task 149 but in case of many users and long history, it would have taken years to execute...
2016-05-30fixes #476, in case of guest_access=false, redirect_http instead of ↵plegall1-2/+6
redirect_html
2016-05-13fixes #479, fallback on srand.php to generate random bytesplegall2-1/+160
when random_compat does not find a suitable random generator. srand.php comes from https://github.com/GeorgeArgyros/Secure-random-bytes-in-PHP
2016-04-26bug #470, use a dedicated lib to generate random bytesplegall11-26/+1170
2016-03-24fixes #442, forgot to include admin functionsplegall1-0/+1
2016-03-10next version is 2.8.1plegall1-1/+1
2016-03-10Fix #436 Call to undefined method Logger::warning in i.phpmistic1001-1/+1
Change log_lvl for release branch
2016-03-08next version on master is 2.9.0beta1plegall1-1/+1
2016-03-08next version is 2.8.02.8.0plegall1-1/+1
2016-03-08change default configuration settings for a stable branch. Developers who ↵plegall1-4/+4
need previous configuration settings can modify them in their local configuration git cherry-pick 39d3c6883b181317205b2b3e31c20baf116ac3b2
2016-02-23feature #321, set status with pwg.categories.setInfosplegall1-0/+27
2016-02-23feature #321, pwg.categories.getList returns statusplegall2-5/+5
2016-02-16fixes #290, avoid error on MySQL insert with ipv6plegall1-1/+12
2016-02-15feature #295, proxy support for fetchRemoteplegall1-0/+14
2016-02-13feature #355, OR with other "search by word" resultsplegall1-17/+22
+ use $logger instead of old style "echo" for debugging
2016-02-13feature #355, apply search by word on tagsplegall1-2/+34
we "simulate" a search by tag, but we still perform a "search by words" AND "search by tags", which lead to different result compared to "word on title OR file OR description OR tags"
2016-02-13bug #383, fix the bug in dedicated function as wellplegall1-1/+1
2016-02-12typo fixedplegall1-1/+1
2016-02-12fixes #414, deactivate auth keys on password changeplegall2-0/+23
2016-02-12feature #383, dedicated function to delete sessionsplegall1-0/+16
2016-02-12fixes #419, an admin can't change webmaster passwordplegall1-0/+21
2016-02-10session_regenerate_id() still fails with PHP 7.0.3plg1-4/+4
fix indentation
2016-02-10if php version is less than 7.0.3 and session_id exists do nothingNicolas1-2/+5
2016-02-03fixes #410, add param thumbnail_size to pwg.categories.getListplegall1-2/+7
2016-02-01next version is 2.8.0RC22.8.0RC2plegall1-1/+1
2016-02-01fixes #413, force log in with auth key userplegall1-5/+0
2016-01-29fixes #412, warn visitor if auth key no longer validplegall2-0/+11
2016-01-28fixes #349, API set ranks of all album photos at onceplegall1-1/+34
on pwg.images.setRank, ability to provide a list of image_id (and no rank). This way you can set the order of all photos of a given album, at once.
2016-01-27bug #408 fixed, no session_regenerate_id on early PHP 7 versionsplg1-2/+2
2016-01-23fix change in smarty class name new versionmodus751-1/+1
2016-01-22Revert "bug #405 fixed, embed CSS style inline"plegall1-2/+2
This reverts commit f3cb99ea09d5a490758febba6b22d28bbab3b356.
2016-01-21bug #405 fixed, embed CSS style inlineplegall1-2/+2
emogrifier could not work, unless we reapply changes introduced by @mistic100 in earlier commits 9cc816d364057828cecc26dc1432448a57f261e9 and efbc08e537e26dde5f1bd98de4f8608ad6e81501
2016-01-21changes on Smarty side breaks all prefilter in Piwigoplegall1-1/+5
It would be better to modify the way template.class.php registers prefilters but I didn't find the appropriate data structure.
2016-01-21update to Smarty 3.1.29plegall31-1352/+1374
2016-01-16shorten some code (not really important)modus752-10/+3
2016-01-14happy new year 2016, all headers updatedplegall66-67/+67
2016-01-14next version is 2.8.0RC1plegall1-1/+1
2016-01-06feature #392, bug fixed on footer linkplegall1-0/+4
Use auth_key in mail cache key to avoid using the auth key of the first user.
2016-01-06add auth_key in mail footer for pwg_mail_groupplegall1-1/+7
2016-01-04feature #392, add authentication key in NBM mailsplegall3-23/+69
There are many links in NBM (Notification By Mail, see screen [Administration > Users > Notification]). I had to change several functions to take this authentication key into account.
2016-01-04feature #392, authentication keys, history logplegall2-1/+6
When a user successfully performs an authentication with an auth_key, Piwigo registers it in the history table. For now, it is not shown/searchable in the history screen, but we can add it in the future and we can provide a plugin with specific details about authentication keys usage.
2016-01-01forgotten to give user_status on recursive call in create_user_auth_key, bug ↵plegall1-1/+1
detected by @mistic100
2015-12-31feature #392, authentication keys, album notificationplegall5-7/+167
* On album notification (for a group), sends one distinct email for each user with a new authentication key. * When someone clicks the link with auth=<key> in URL, if the user is not already connected, Piwigo will automatically connect the user.
2015-12-20bug #385 __construct for PHP 7 compatibilityplegall1-1/+1