*** empty log message ***
git-svn-id: http://piwigo.org/svn/trunk@20 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
0b6204e5fb
commit
1080c51deb
5 changed files with 7 additions and 7 deletions
|
@ -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' );
|
||||
|
|
|
@ -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'];
|
||||
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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.';
|
||||
|
|
|
@ -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'] );
|
||||
|
|
Loading…
Reference in a new issue