diff options
Diffstat (limited to 'admin/include')
-rw-r--r-- | admin/include/functions.php | 8 | ||||
-rw-r--r-- | admin/include/functions_upgrade.php | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/admin/include/functions.php b/admin/include/functions.php index 0bf9db6f0..ef6449347 100644 --- a/admin/include/functions.php +++ b/admin/include/functions.php @@ -220,7 +220,7 @@ function delete_user($user_id) FAVORITES_TABLE, // destruction of the caddie associated with the user CADDIE_TABLE, - // deletion of phpwebgallery specific informations + // deletion of piwigo specific informations USER_INFOS_TABLE, ); @@ -1694,11 +1694,11 @@ SELECT image_id } /** - * Create an XML file with PhpWebGallery informations about a list of + * Create an XML file with Piwigo informations about a list of * pictures. * * The goal of the export feature is to make easier the reading of - * informations related to pictures outside of PhpWebGallery. + * informations related to pictures outside of Piwigo. * * @param array image_ids */ @@ -1785,7 +1785,7 @@ SELECT id, } /** - * Refer main PhpWebGallery URLs (currently PHPWG_DOMAIN domain) + * Refer main Piwigo URLs (currently PHPWG_DOMAIN domain) * * @param void * @return array like $conf['links'] diff --git a/admin/include/functions_upgrade.php b/admin/include/functions_upgrade.php index ac058294f..7e9a93aef 100644 --- a/admin/include/functions_upgrade.php +++ b/admin/include/functions_upgrade.php @@ -23,10 +23,10 @@ function check_upgrade() { - // Is PhpWebGallery already installed ? + // Is Piwigo already installed ? if (!defined('PHPWG_IN_UPGRADE') or !PHPWG_IN_UPGRADE) { - $message = 'PhpWebGallery is not in upgrade mode. In include/mysql.inc.php, + $message = 'Piwigo is not in upgrade mode. In include/mysql.inc.php, insert line <pre style="background-color:lightgray"> define(\'PHPWG_IN_UPGRADE\', true); |