aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--admin/configuration.php4
-rw-r--r--category.php4
-rw-r--r--include/config.inc.php2
-rw-r--r--language/francais.php2
-rw-r--r--upload.php2
5 files changed, 7 insertions, 7 deletions
diff --git a/admin/configuration.php b/admin/configuration.php
index d814a3069..bb8978c65 100644
--- a/admin/configuration.php
+++ b/admin/configuration.php
@@ -329,8 +329,8 @@ $vtp->addSession( $sub, 'line' );
$vtp->addSession( $sub, 'param_line' );
$vtp->setVar( $sub, 'param_line.name', $lang['conf_general_prefix'] );
$vtp->addSession( $sub, 'text' );
-$vtp->setVar( $sub, 'text.name', 'prefixe_thumbnail' );
-$vtp->setVar( $sub, 'text.value', $prefixe_thumbnail );
+$vtp->setVar( $sub, 'text.name', 'prefix_thumbnail' );
+$vtp->setVar( $sub, 'text.value', $prefix_thumbnail );
$vtp->closeSession( $sub, 'text' );
$vtp->setVar( $sub, 'param_line.def', $lang['conf_general_prefix_info'] );
$vtp->closeSession( $sub, 'param_line' );
diff --git a/category.php b/category.php
index e83c8bd95..37e7deea0 100644
--- a/category.php
+++ b/category.php
@@ -279,7 +279,7 @@ if ( isset( $page['cat'] ) and $page['cat_nb_images'] != 0 )
}
// thumbnail url
$thumbnail_url = $cat_directory;
- $thumbnail_url.= 'thumbnail/'.$conf['prefixe_thumbnail'];
+ $thumbnail_url.= 'thumbnail/'.$conf['prefix_thumbnail'];
$thumbnail_url.= $file.'.'.$row['tn_ext'];
// message in title for the thumbnail
$thumbnail_title = $row['file'];
@@ -380,7 +380,7 @@ elseif ( isset( $page['cat'] )
// creating links for thumbnail and associated category
$lien_image = $cat_directory;
$lien_thumbnail = $lien_image;
- $lien_thumbnail.= 'thumbnail/'.$conf['prefixe_thumbnail'];
+ $lien_thumbnail.= 'thumbnail/'.$conf['prefix_thumbnail'];
$lien_thumbnail.= $file.'.'.$image_row['tn_ext'];
$lien_image.= $image_row['file'];
diff --git a/include/config.inc.php b/include/config.inc.php
index aabbd5ac0..f52996b9f 100644
--- a/include/config.inc.php
+++ b/include/config.inc.php
@@ -52,7 +52,7 @@ database_connection();
// $infos array is used to know the fields to retrieve in the table "config"
// Each field becomes an information of the array $conf.
// Example :
-// prefixe_thumbnail --> $conf['prefixe_thumbnail']
+// prefix_thumbnail --> $conf['prefix_thumbnail']
$infos = array( 'prefix_thumbnail', 'webmaster', 'mail_webmaster', 'access',
'session_id_size', 'session_keyword', 'session_time',
'max_user_listbox', 'show_comments', 'nb_comment_page',
diff --git a/language/francais.php b/language/francais.php
index 9aefc4840..5685578fe 100644
--- a/language/francais.php
+++ b/language/francais.php
@@ -521,7 +521,7 @@ if ( $isadmin )
// $lang['help_remote_title'] = 'Site distant';
// end version 1.3
$lang['help_remote'][0] = 'PhpWebGallery offre la possibilité d\'utiliser plusieurs serveurs pour stocker les images qui composeront votre galerie. Cela peut être utile si votre galerie est installée sur une espace limité et que vous avez une grande quantité d\'images à montrer. Suivez la procédure suivante :';
- $lang['help_remote'][1] = '1. éditez le fichier "create_listing_file.php" (vous le trouverez dans le répertoire "admin"), en modifiant la ligne "$prefixe_thumbnail = "TN-";" si le préfixe pour vos miniatures n\'est pas "TN-".';
+ $lang['help_remote'][1] = '1. éditez le fichier "create_listing_file.php" (vous le trouverez dans le répertoire "admin"), en modifiant la ligne "$prefix_thumbnail = "TN-";" si le préfixe pour vos miniatures n\'est pas "TN-".';
$lang['help_remote'][2] = '2. placez le fichier "create_listing_file.php" modifié sur votre site distant, dans le répertoire racine de vos répertoires d\'images (comme le répertoire "galleries" du présent site) par ftp.';
$lang['help_remote'][3] = '3. lancez le script en allant à l\'url http://domaineDistant/repGalerie/create_listing_file.php, un fichier listing.xml vient de se créer.';
$lang['help_remote'][4] = '4. récupérez le fichier listing.xml de votre site distant pour le placer dans le répertoire "admin" du présent site.';
diff --git a/upload.php b/upload.php
index b22432d6d..a03824de2 100644
--- a/upload.php
+++ b/upload.php
@@ -202,7 +202,7 @@ if ( isset( $_POST['submit'] ) and isset( $_GET['waiting_id'] ) )
$file = substr ( $row['file'], 0, strrpos ( $row['file'], ".") );
$extension = get_extension( $_FILES['picture']['name'] );
$path = $page['cat_dir'].'thumbnail/';
- $path.= $conf['prefixe_thumbnail'].$file.'.'.$extension;
+ $path.= $conf['prefix_thumbnail'].$file.'.'.$extension;
$result = validate_upload( $path, $conf['upload_maxfilesize'],
$conf['upload_maxwidth_thumbnail'],
$conf['upload_maxheight_thumbnail'] );