From b125c3b0863d61de32bb02a5beaa26fe0ab0d54a Mon Sep 17 00:00:00 2001 From: z0rglub Date: Mon, 21 Jul 2003 20:51:47 +0000 Subject: ['template'] as user_template for displaying pictures in the template git-svn-id: http://piwigo.org/svn/trunk@29 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/update.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'admin/update.php') diff --git a/admin/update.php b/admin/update.php index eefd913c1..30d8e0f88 100644 --- a/admin/update.php +++ b/admin/update.php @@ -19,7 +19,7 @@ include_once( './include/isadmin.inc.php' ); //------------------------------------------------------------------- functions function insert_local_category( $cat_id ) { - global $conf, $page; + global $conf, $page, $user; $site_id = 1; @@ -31,7 +31,8 @@ function insert_local_category( $cat_id ) $result = get_cat_info( $cat_id ); $cat_directory.= '/'.$result['local_dir']; // 1. display the category name to update - $output = '>'; + $src = '../template/'.$user['template'].'/admin/images/puce.gif'; + $output = '>'; $output.= ''.$result['name'][0].''; $output.= ' [ '.$result['last_dir'].' ]'; $output.= '
'; @@ -370,7 +371,7 @@ function remote_images() // the xml_file. function insert_remote_category( $xml_dir, $site_id, $id_uppercat, $level ) { - global $conf; + global $conf,$user; $output = ''; $categories = array(); @@ -382,7 +383,8 @@ function insert_remote_category( $xml_dir, $site_id, $id_uppercat, $level ) $name = getAttribute( $list_dirs[$i], 'name' ); $categories[$i] = $name; - $output.= ''; + $src = '../template/'.$user['template'].'/admin/images/puce.gif'; + $output.= '>'; $output.= ''.$name.''; $output.= '
'; @@ -552,6 +554,7 @@ $tpl = array( 'update_default_title', 'update_only_cat', 'update_all', 'update_research_conclusion', 'update_deletion_conclusion', 'remote_site', 'update_part_research' ); templatize_array( $tpl, 'lang', $sub ); +$vtp->setGlobalVar( $sub, 'user_template', $user['template'] ); //-------------------------------------------- introduction : choices of update // Display choice if "update" var is not specified check_cat_id( $_GET['update'] ); -- cgit v1.2.3