mirror of
https://github.com/YunoHost-Apps/piwigo_ynh.git
synced 2024-09-03 20:06:03 +02:00
76fc701a4b
- refactoring to comply with packaging latest standards/helpers - use Piwigo internal upgrade process via a curl command
9 lines
267 B
PHP
9 lines
267 B
PHP
<?php
|
|
define('PHPWG_ROOT_PATH','./');
|
|
|
|
include(PHPWG_ROOT_PATH . 'include/config_default.inc.php');
|
|
@include(PHPWG_ROOT_PATH. 'local/config/config.inc.php');
|
|
include(PHPWG_ROOT_PATH . 'include/functions.inc.php');
|
|
|
|
print $conf['password_hash']($argv[1]);
|
|
?>
|