mirror of
https://github.com/YunoHost-Apps/piwigo_ynh.git
synced 2024-09-03 20:06:03 +02:00
10 lines
267 B
PHP
10 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]);
|
||
|
?>
|