1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/piwigo_ynh.git synced 2024-09-03 20:06:03 +02:00

Prevent checking for new updates

This commit is contained in:
Jimmy Monin 2017-06-10 21:39:33 +02:00
parent fcc493af42
commit e683d22272

View file

@ -1,10 +1,13 @@
<?php
// Use HTTP authentication
$conf['apache_authentication'] = true;
// Use external authentication
$conf['external_authentification'] = true;
?>
<?php
// Use HTTP authentication
$conf['apache_authentication'] = true;
// Use external authentication
$conf['external_authentification'] = true;
// how often should we check for new versions of Piwigo on piwigo.org? In
// seconds. The check is made only if there are visits on Piwigo.
// 0 to disable.
$conf['update_notify_check_period'] = 0;
?>