aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2008-03-20 00:35:36 +0000
committerrvelices <rv-github@modusoptimus.com>2008-03-20 00:35:36 +0000
commitf12f0026fcdf791fbd2300cd23c1f14d0a547e3a (patch)
tree0011dc333f69b062b338d33e488299fda6cbd7d4 /plugins
parentcab98df7768729895771aa072ccc35bc8774e6cb (diff)
- admin/notification_by_mail goes smarty - THE LAST ONE :-) :-)
- get rid of user_list warnings - some code reorganisation in template class + explode modifier - minor template and language changes in search.tpl and cat_modify.tpl git-svn-id: http://piwigo.org/svn/trunk@2286 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'plugins')
-rw-r--r--plugins/language_switch/language_switch.inc.php26
1 files changed, 13 insertions, 13 deletions
diff --git a/plugins/language_switch/language_switch.inc.php b/plugins/language_switch/language_switch.inc.php
index 11a4c4ddd..f6fc135a3 100644
--- a/plugins/language_switch/language_switch.inc.php
+++ b/plugins/language_switch/language_switch.inc.php
@@ -1,4 +1,4 @@
-<?php
+<?php
// +-----------------------------------------------------------------------+
// | PhpWebGallery - a PHP based picture gallery |
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
@@ -30,13 +30,13 @@ function language_switch()
$same = $user['language'];
if ( isset( $_GET['lang']) )
{
- if ( !empty($_GET['lang'] ) and
+ if ( !empty($_GET['lang'] ) and
file_exists( PHPWG_ROOT_PATH.'language/'
. $_GET['lang'].'/common.lang.php') )
{
if (is_a_guest() or is_generic())
{
- setcookie( 'pwg_lang_switch', $_GET['lang'],
+ setcookie( 'pwg_lang_switch', $_GET['lang'],
time()+60*60*24*30, cookie_path() );
}
else
@@ -54,11 +54,11 @@ function language_switch()
// Guest or generic members will use their cookied language !
if ((is_a_guest() or is_generic())
and isset( $_COOKIE['pwg_lang_switch'] ) )
- {
- $user['language'] = $_COOKIE['pwg_lang_switch'];
+ {
+ $user['language'] = $_COOKIE['pwg_lang_switch'];
}
// Reload language only if it isn't the same one
- if ( $same !== $user['language'])
+ if ( $same !== $user['language'])
{
load_language('common.lang', '', $user['language']);
load_language('local.lang', '', $user['language']);
@@ -70,7 +70,7 @@ function language_switch()
}
//if ( isset( $_GET['lang']) ) { redirect( make_index_url() ); }
-function Lang_flags()
+function Lang_flags()
{
global $user, $template;
$available_lang = get_languages();
@@ -79,15 +79,15 @@ function Lang_flags()
$qlc_url = add_url_params( make_index_url(), array( 'lang' => $code ) );
$qlc_alt = ucwords( $displayname );
$qlc_title = $qlc_alt;
- $qlc_img = PHPWG_PLUGINS_PATH.'language_switch/icons/'
+ $qlc_img = 'plugins/language_switch/icons/'
. $code . '.gif';
-
- if ( $code !== $user['language'] and file_exists($qlc_img) )
+
+ if ( $code !== $user['language'] and file_exists(PHPWG_ROOT_PATH.$qlc_img) )
{
- $template -> concat_var( 'PLUGIN_INDEX_ACTIONS',
- '<li><a href="' . $qlc_url . '" ><img src="' . $qlc_img . '" alt="'
+ $template->concat( 'PLUGIN_INDEX_ACTIONS',
+ '<li><a href="' . $qlc_url . '" ><img src="' . get_root_url().$qlc_img . '" alt="'
. $qlc_alt . '" title="'
- . $qlc_title . '" style="border: 1px solid #000000; '
+ . $qlc_title . '" style="border: 1px solid #000000; '
. ' margin: 0px 2px;" /></a></li>');
}
}