Changeset 171

User picture

Author: Mighty Gorgon

(2010/02/07 18:29) About 2 years ago

Bugs fixed:
* Missed global declaration in calendar block
* Fixed some headers in some files
* Global blocks in AJAX CMS

New things:
* Added a global var with page information in $userdata
* Added some new features in class_form.php

Affected files

Updated ip/trunk/blocks/calendar.php Download diff

170171
25
{
25
{
26
	function cms_block_calendar()
26
	function cms_block_calendar()
27
	{
27
	{
28
		global $db, $cache, $config, $template, $images, $userdata, $lang;
28
		global $db, $cache, $config, $template, $images, $userdata, $lang, $bbcode;
29
		global $mini_cal_today, $mini_cal_this_month, $mini_cal_this_year, $mini_cal_this_day;
29
		global $mini_cal_today, $mini_cal_this_month, $mini_cal_this_year, $mini_cal_this_day;
30
30
31
		$birthdays_list = array();
31
		$birthdays_list = array();

Updated ip/trunk/cms.php Download diff

170171
1109
	}
1109
	}
1110
	elseif(($id_var_value != 0) || ($action == 'editglobal'))
1110
	elseif(($id_var_value != 0) || ($action == 'editglobal'))
1111
	{
1111
	{
1112
		// To be removed when it is fixed...
1113
		$cms_ajax = false;
1114
1112
		if(isset($_POST['action_update']))
1115
		if(isset($_POST['action_update']))
1113
		{
1116
		{
1114
			$blocks_upd = array();
1117
			$blocks_upd = array();

Updated ip/trunk/includes/class_form.php Download diff

170171
24
	*/
24
	*/
25
	function create_input($name, $properties)
25
	function create_input($name, $properties)
26
	{
26
	{
27
		global $config;
27
		global $config, $lang;
28
28
29
		$input = '';
29
		$input = '';
30
		$default = !empty($properties['default']) ? (is_array($properties['default']) ? array_map('htmlspecialchars', array_map('stripslashes',
$properties['default'])) : htmlspecialchars(stripslashes($properties['default']))) : '';
30
		$default = !empty($properties['default']) ? (is_array($properties['default']) ? array_map('htmlspecialchars', array_map('stripslashes',
$properties['default'])) : htmlspecialchars(stripslashes($properties['default']))) : '';
...
...
88
				$input .= $this->time_input($name, $tf['hour'], $tf['minute'], $tf['second']);
88
				$input .= $this->time_input($name, $tf['hour'], $tf['minute'], $tf['second']);
89
				break;
89
				break;
90
90
91
			case 'USERNAME_INPUT':
92
				$input = '<input type="text" name="' . $name . '" id="' . $name . '" maxlength="255" size="45"
class="post" value="' . $default . '" />';
93
				$input .= '<input type="submit" name="' . $name . '_search_button" value="' . $lang['Find_username'] . '"
class="mainoption" onclick="window.open(\'' . append_sid(IP_ROOT_PATH . CMS_PAGE_SEARCH .
'?mode=searchuser&amp;target_form_name=input_form&amp;target_element_name=' . $name) . '\', \'_search\', \'width=400,height=250,resizable=yes\'); return
false;" />';
94
				break;
95
91
			case 'TINYINT':
96
			case 'TINYINT':
92
				$input = '<input type="text" name="' . $name . '" maxlength="3" size="3" class="post" value="' .
$default . '" />';
97
				$input = '<input type="text" name="' . $name . '" maxlength="3" size="3" class="post" value="' .
$default . '" />';
93
				break;
98
				break;
...
...
346
					$value = create_date_ip($config['default_dateformat'], $inputs_array[$k], $config['board_timezone']);
351
					$value = create_date_ip($config['default_dateformat'], $inputs_array[$k], $config['board_timezone']);
347
				}
352
				}
348
353
349
				// Create user link
354
				// Create user link (with user_id)
350
				if ($v['is_user_id'])
355
				if ($v['is_user_id'])
351
				{
356
				{
352
					$value = colorize_username($inputs_array[$k]);
357
					$value = colorize_username($inputs_array[$k]);
353
				}
358
				}
354
359
360
				// Create user link (with user_name)
361
				if ($v['is_username'])
362
				{
363
					$target_userid = $this->get_user_id($inputs_array[$k]);
364
					$value = colorize_username($target_userid);
365
				}
366
355
				// Create thumbnails for images
367
				// Create thumbnails for images
356
				if ($v['is_image'])
368
				if ($v['is_image'])
357
				{
369
				{
...
...
441
	}
453
	}
442
454
443
	/*
455
	/*
456
	* Get user_id from username or validate user_id
457
	*/
458
	function get_user_id($user)
459
	{
460
		global $db;
461
462
		$target_userdata = array();
463
		$target_userdata = get_userdata($user, true);
464
		if (empty($target_userdata))
465
		{
466
			$target_userdata = get_userdata($user);
467
		}
468
		$target_user_id = empty($target_userdata) ? ANONYMOUS : $target_userdata['user_id'];
469
470
		return $target_user_id;
471
	}
472
473
	/*
474
	* Get username from user_id
475
	*/
476
	function get_username($user_id)
477
	{
478
		global $db;
479
480
		$target_userdata = array();
481
		$target_userdata = get_userdata($user_id);
482
		$target_username = empty($target_userdata) ? '' : $target_userdata['username'];
483
484
		return $target_username;
485
	}
486
487
	/*
444
	* Create date input
488
	* Create date input
445
	*/
489
	*/
446
	function date_input($name_prefix, $year = 1969, $month = 1, $day = 1)
490
	function date_input($name_prefix, $year = 1969, $month = 1, $day = 1)
...
...
598
		$rating_level = round(($rating / $rating_scale) * 10, 0) / 2;
642
		$rating_level = round(($rating / $rating_scale) * 10, 0) / 2;
599
		$rating_img_suffix = strval(number_format($rating_level, 1, '.', ''));
643
		$rating_img_suffix = strval(number_format($rating_level, 1, '.', ''));
600
		$rating_image = $rating_img_path . 'rate_' . $rating_img_suffix . '.' . $rating_img_extension;
644
		$rating_image = $rating_img_path . 'rate_' . $rating_img_suffix . '.' . $rating_img_extension;
645
601
		return $rating_image;
646
		return $rating_image;
602
	}
647
	}
603
648

Updated ip/trunk/includes/class_privmsgs_admin.php Download diff

170171
231
				{
231
				{
232
					return $nameCache['reverse'][$id];
232
					return $nameCache['reverse'][$id];
233
				}
233
				}
234
				$sql = "SELECT user_id, username, user_active, user_color FROM " . USERS_TABLE . " WHERE username = " . $id;
234
				$sql = "SELECT user_id, username, user_active, user_color FROM " . USERS_TABLE . " WHERE username = '" . $id . "'";
235
				$result = $db->sql_query($sql);
235
				$result = $db->sql_query($sql);
236
				$row = $db->sql_fetchrow($result);
236
				$row = $db->sql_fetchrow($result);
237
				if (empty($row['user_id']))
237
				if (empty($row['user_id']))

Added ip/trunk/includes/db/db_tools.php

Show contents

Updated ip/trunk/includes/functions.php Download diff

170171
624
	$sql .= ((is_integer($user)) ? "user_id = $user" : "username = '" .  str_replace("\'", "''", $user) . "'") .
" AND user_id <> " . ANONYMOUS;
624
	$sql .= ((is_integer($user)) ? "user_id = $user" : "username = '" .  str_replace("\'", "''", $user) . "'") .
" AND user_id <> " . ANONYMOUS;
625
	$result = $db->sql_query($sql);
625
	$result = $db->sql_query($sql);
626
626
627
	// Start Advanced IP Tools Pack MOD
628
	if ($db->sql_affectedrows() == 0)
627
	if ($db->sql_affectedrows() == 0)
629
	{
628
	{
630
		//message_die(GENERAL_ERROR, 'User does not exist.');
629
		//message_die(GENERAL_ERROR, 'User does not exist.');
631
		return false;
630
		return false;
632
	}
631
	}
633
	// End Advanced IP Tools Pack MOD
634
632
635
	if ($row = $db->sql_fetchrow($result))
633
	if ($row = $db->sql_fetchrow($result))
636
	{
634
	{

Updated ip/trunk/includes/functions_search.php Download diff

170171
374
		'L_SEARCH_EXPLAIN' => $lang['Search_author_explain'],
374
		'L_SEARCH_EXPLAIN' => $lang['Search_author_explain'],
375
		'L_CLOSE_WINDOW' => $lang['Close_window'],
375
		'L_CLOSE_WINDOW' => $lang['Close_window'],
376
376
377
		'S_TARGET_FORM_NAME' => preg_replace('/[^A-Za-z0-9-_]+/', '', request_var('target_form_name', 'post')),
378
		'S_TARGET_ELEMENT_NAME' => preg_replace('/[^A-Za-z0-9-_]+/', '', request_var('target_element_name', 'username')),
379
377
		'S_USERNAME_OPTIONS' => $username_list,
380
		'S_USERNAME_OPTIONS' => $username_list,
378
		'S_SEARCH_ACTION' => append_sid(CMS_PAGE_SEARCH . '?mode=searchuser')
381
		'S_SEARCH_ACTION' => append_sid(CMS_PAGE_SEARCH . '?mode=searchuser')
379
		)
382
		)
...
...
383
	{
386
	{
384
		if ($username_list == '')
387
		if ($username_list == '')
385
		{
388
		{
386
			$template->assign_var('USERNAME_LIST_VIS', 'style="display:none;"');
389
			$template->assign_var('USERNAME_LIST_VIS', 'style="display: none;"');
387
		}
390
		}
388
	}
391
	}
389
	else
392
	else

Updated ip/trunk/includes/sessions.php Download diff

170171
322
	}
322
	}
323
//<!-- END Unread Post Information to Database Mod -->
323
//<!-- END Unread Post Information to Database Mod -->
324
324
325
	$userdata['page'] = $page_array;
326
325
	setcookie($cookiename . '_data', serialize($sessiondata), $current_time + 31536000, $cookiepath, $cookiedomain, $cookiesecure);
327
	setcookie($cookiename . '_data', serialize($sessiondata), $current_time + 31536000, $cookiepath, $cookiedomain, $cookiesecure);
326
	setcookie($cookiename . '_sid', $session_id, 0, $cookiepath, $cookiedomain, $cookiesecure);
328
	setcookie($cookiename . '_sid', $session_id, 0, $cookiepath, $cookiedomain, $cookiesecure);
327
329

Added ip/trunk/templates/common/jquery/jquery_scrollto.js

Show contents

Updated ip/trunk/templates/common/xs_mod/tpl/cache.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                                cache.tpl
3
*
4
 *                                ---------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id cache.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 55
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:55
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_MANAGE_CACHE}</h1>
14
<h1>{L_XS_MANAGE_CACHE}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/clone.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                                clone.tpl
3
*
4
 *                                ---------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id clone.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 55
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:54
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_CLONE_STYLES}</h1>
14
<h1>{L_XS_CLONE_STYLES}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/clone2.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                                clone2.tpl
3
*
4
 *                                ----------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id clone2.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 80
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:54
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_CLONE_STYLE}</h1>
14
<h1>{L_XS_CLONE_STYLE}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/config.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                                confir.tpl
3
*
4
 *                                ----------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id config.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 55
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:55
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_CONFIG_MAINTITLE}</h1>
14
<h1>{L_XS_CONFIG_MAINTITLE}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/downloads.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                              downloads.tpl
3
*
4
 *                              -------------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id downloads.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 80
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:54
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_DOWNLOAD_STYLES}</h1>
14
<h1>{L_XS_DOWNLOAD_STYLES}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/edit.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                                 edit.tpl
3
*
4
 *                                 --------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id edit.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 80
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:54
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_EDIT_TEMPLATES}</h1>
14
<h1>{L_XS_EDIT_TEMPLATES}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/edit_data.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                              edit_data.tpl
3
*
4
 *                              -------------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id edit_data.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 55
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:55
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_EDIT_STYLES_DATA}</h1>
14
<h1>{L_XS_EDIT_STYLES_DATA}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/edit_data_list.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                            edit_data_list.tpl
3
*
4
 *                            ------------------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id edit_data_list.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 55
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:55
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_EDIT_STYLES_DATA}</h1>
14
<h1>{L_XS_EDIT_STYLES_DATA}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/edit_file.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                              edit_file.tpl
3
*
4
 *                              -------------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id edit_file.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 80
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:54
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<script type="text/javascript">
14
<script type="text/javascript">

Updated ip/trunk/templates/common/xs_mod/tpl/export.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                                export.tpl
3
*
4
 *                                ----------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id export.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 55
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:54
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_EXPORT_STYLE}</h1>
14
<h1>{L_XS_EXPORT_STYLE}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/export2.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                               export2.tpl
3
*
4
 *                               -----------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id export2.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 80
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:55
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_EXPORT_STYLE}</h1>
14
<h1>{L_XS_EXPORT_STYLE}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/export_data.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                             export_data.tpl
3
*
4
 *                             ---------------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id export_data.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 55
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:55
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_EXPORT_STYLES_DATA}</h1>
14
<h1>{L_XS_EXPORT_STYLES_DATA}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/export_data2.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                             export_data2.tpl
3
*
4
 *                             ----------------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id export_data2.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 55
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:54
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_EXPORT_STYLES_DATA}</h1>
14
<h1>{L_XS_EXPORT_STYLES_DATA}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/frame_top.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                              frame_top.tpl
3
*
4
 *                              -------------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id frame_top.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 80
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:55
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<html>
14
<html>

Updated ip/trunk/templates/common/xs_mod/tpl/frameset.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                               frameset.tpl
3
*
4
 *                               ------------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id frameset.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 57
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:55
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<html>
14
<html>

Updated ip/trunk/templates/common/xs_mod/tpl/ftp.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                                 ftp.tpl
3
*
4
 *                                 -------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id ftp.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 80
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:54
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_FTP_TITLE}</h1>
14
<h1>{L_XS_FTP_TITLE}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/import.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                                import.tpl
3
*
4
 *                                ----------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id import.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 80
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:55
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_IMPORT_STYLES}</h1>
14
<h1>{L_XS_IMPORT_STYLES}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/import2.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                               import2.tpl
3
*
4
 *                               -----------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id import2.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 80
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:54
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<form action="{FORM_ACTION}" method="post">{S_RETURN}<input type="hidden" name="import"
value="{IMPORT_FILENAME}" /><table width="100%" cellpadding="4" cellspacing="1" border="0"
align="center" class="forumline">
14
<form action="{FORM_ACTION}" method="post">{S_RETURN}<input type="hidden" name="import"
value="{IMPORT_FILENAME}" /><table width="100%" cellpadding="4" cellspacing="1" border="0"
align="center" class="forumline">

Updated ip/trunk/templates/common/xs_mod/tpl/index.html Download diff

170171
1
<html>
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml">
2
<head>
3
<head>
4
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
5
<meta name="author" content="Icy Phoenix Team" />
3
<title>Icy Phoenix</title>
6
<title>Icy Phoenix</title>
4
</head>
7
</head>
5
<body>
8
<body>

Updated ip/trunk/templates/common/xs_mod/tpl/index.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                                index.tpl
3
*
4
 *                                ---------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id index.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 80
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:55
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_TITLE}</h1>
14
<h1>{L_XS_TITLE}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/install.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                               install.tpl
3
*
4
 *                               -----------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id install.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 80
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:55
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_INSTALL_STYLES}</h1>
14
<h1>{L_XS_INSTALL_STYLES}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/message.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                               message.tpl
3
*
4
 *                               -----------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id message.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 80
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:54
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<!-- BEGIN left_refresh -->
14
<!-- BEGIN left_refresh -->

Updated ip/trunk/templates/common/xs_mod/tpl/style_config.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                             style_config.tpl
3
*
4
 *                             ----------------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id style_config.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 61
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:54
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_STYLE_CONFIGURATION}: {TPL}</h1>
14
<h1>{L_XS_STYLE_CONFIGURATION}: {TPL}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/styles.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                                styles.tpl
3
*
4
 *                                ----------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id styles.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 55
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:54
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_DEF_TITLE}</h1>
14
<h1>{L_XS_DEF_TITLE}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/uninstall.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                              uninstall.tpl
3
*
4
 *                              -------------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id uninstall.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 80
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:55
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_UNINSTALL_STYLES}</h1>
14
<h1>{L_XS_UNINSTALL_STYLES}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/update.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                                update.tpl
3
*
4
 *                                ----------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id update.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 55
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:54
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_UPDATES}</h1>
14
<h1>{L_XS_UPDATES}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/update2.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                               update2.tpl
3
*
4
 *                               -----------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id update2.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 55
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:55
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
<h1>{L_XS_UPDATES}</h1>
14
<h1>{L_XS_UPDATES}</h1>

Updated ip/trunk/templates/common/xs_mod/tpl/xs_footer.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                              xs_footer.tpl
3
*
4
 *                              -------------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id xs_footer.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 80
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:55
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
17
	</td>
14
	</td>
18
</tr>
15
</tr>
19
<?php
20
16
21
/*
22
23
You are not allowed to remove copyright on bottom of page.
24
25
If you are developer of some modded phpBB then you can alter
26
copyright and add name of your modded phpBB to it, but you
27
cannot remove anything from copyright.
28
29
*/
30
31
?>
32
<tr>
17
<tr>
33
	<td valign="bottom" align="center" style="padding: 5px;"><span class="copyright"><br />Powered by <a href="http://www.phpbb.com/" target="_blank">phpBB</a> and by <a href="http://www.stsoftware.biz/forum/showthread.php?t=94" target="_blank">eXtreme Styles mod</a> &copy; <a href="http://www.stsoftware.biz/">Vjacheslav Trushkin</a>.</span></td>
18
	<td valign="bottom" align="center" style="padding: 5px;"><span class="copyright"><br />Powered by
<a href="http://www.phpbb.com/" target="_blank">phpBB</a> and by <a
href="http://www.stsoftware.biz/forum/showthread.php?t=94" target="_blank">eXtreme Styles</a> &copy; <a
href="http://www.stsoftware.biz/">Vjacheslav Trushkin</a>.</span></td>
34
</tr>
19
</tr>
35
</table>
20
</table>
36
</body></html>
21
</body>
22
</html>

Updated ip/trunk/templates/common/xs_mod/tpl/xs_header.tpl Download diff

170171
1
<!-- BEGIN xs_file_version -->
1
<!-- BEGIN xs_file_version -->
2
/***************************************************************************
2
/**
3
 *                              xs_header.tpl
3
*
4
 *                              -------------
4
* @package Icy Phoenix eXtreme Style 2.4.1
5
 *   copyright            : (C) 2003 - 2007 Vjacheslav Trushkin
5
* @file $Id xs_header.tpl
6
 *   support              : http://www.stsoftware.biz/forum
6
* @author Vjacheslav Trushkin
7
 *
7
* @copyright (C) 2003 - 2007
8
 *   version              : 2.4.1
8
* @support http://www.stsoftware.biz/forum
9
 *
9
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10
 *   file revision        : 80
10
*
11
 *   project revision     : 83
11
**/
12
 *   last modified        : 12 Mar 2007  13:54:54
13
 *
14
 ***************************************************************************/
15
<!-- END xs_file_version -->
12
<!-- END xs_file_version -->
16
13
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
17
<html>
14
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
18
<head>
15
<head>
19
<meta http-equiv="Content-Style-Type" content="text/css">
16
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
20
<link rel="stylesheet" href="{XS_PATH}style.css" type="text/css">
17
<meta http-equiv="content-style-type" content="text/css" />
21
<style>
18
<link rel="stylesheet" href="{XS_PATH}style.css" type="text/css" />
19
<style type="text/css">
22
<!--
20
<!--
23
body { background-color: #E5E5E5; background-image: url('{XS_PATH}images/top_bg2.gif'); background-position: top left; background-repeat: repeat-x; margin-top:
5px; margin-bottom: 5px; margin-left: 2px; margin-right: 2px; }
21
body { background-color: #E5E5E5; background-image: url('{XS_PATH}images/top_bg2.gif'); background-position: top left; background-repeat: repeat-x; margin-top:
5px; margin-bottom: 5px; margin-left: 2px; margin-right: 2px; }
24
-->
22
-->
25
</style>
23
</style>
26
</head>
24
</head>
27
<body>
25
<body>
28
<table width="100%" height="100%" cellspacing="0" cellpadding="2" class="bodyline">
26
<table class="bodyline" width="100%" height="100%" cellspacing="0" cellpadding="2">
29
<tr>
27
<tr>
30
	<td align="left" valign="top" style="padding: 5px;">
28
	<td align="left" valign="top" style="padding: 5px;">
31
<table width="100%" cellspacing="0" cellpadding="3" class="navbar">
29
<table width="100%" cellspacing="0" cellpadding="3" class="navbar">

Updated ip/trunk/templates/default/default.cfg Download diff

170171
644
$template->assign_vars(array(
644
$template->assign_vars(array(
645
	'IP_ROOT_PATH' => IP_ROOT_PATH,
645
	'IP_ROOT_PATH' => IP_ROOT_PATH,
646
	'PHP_EXT' => PHP_EXT,
646
	'PHP_EXT' => PHP_EXT,
647
	'SCRIPT_NAME' => str_replace('.' . PHP_EXT, '', $userdata['page']['page_name']),
647
	'POST_FORUM_URL' => POST_FORUM_URL,
648
	'POST_FORUM_URL' => POST_FORUM_URL,
648
	'POST_TOPIC_URL' => POST_TOPIC_URL,
649
	'POST_TOPIC_URL' => POST_TOPIC_URL,
649
	'POST_POST_URL' => POST_POST_URL,
650
	'POST_POST_URL' => POST_POST_URL,

Updated ip/trunk/templates/default/groupcp_info_body.tpl Download diff

170171
124
		<!-- BEGIN switch_mod_option -->
124
		<!-- BEGIN switch_mod_option -->
125
		<span class="genmed">
125
		<span class="genmed">
126
		<input type="text" class="post" name="username" id="username" maxlength="50" size="20"
{S_AJAX_USER_CHECK} />&nbsp;
126
		<input type="text" class="post" name="username" id="username" maxlength="50" size="20"
{S_AJAX_USER_CHECK} />&nbsp;
127
		<span id="username_list" style="display:none;">&nbsp;<span
id="username_select">&nbsp;</span></span>
127
		<span id="username_list" style="display: none;">&nbsp;<span id="username_select">&nbsp;</span></span>
128
		<input type="submit" name="add" value="{L_ADD_MEMBER}" class="mainoption" />&nbsp;
128
		<input type="submit" name="add" value="{L_ADD_MEMBER}" class="mainoption" />&nbsp;
129
		<input type="submit" name="usersubmit" value="{L_FIND_USERNAME}" class="liteoption"
onclick="window.open('{U_SEARCH_USER}', '_search', 'width=400,height=250,resizable=yes'); return false;" />
129
		<input type="submit" name="usersubmit" value="{L_FIND_USERNAME}" class="liteoption"
onclick="window.open('{U_SEARCH_USER}', '_search', 'width=400,height=250,resizable=yes'); return false;" />
130
		</span>
130
		</span>
131
		<br />
131
		<br />
132
		<span id="username_error_tbl" style="display:none;"><span id="username_error_text"
class="gen">&nbsp;</span></span>
132
		<span id="username_error_tbl" style="display: none;"><span id="username_error_text" class="gen">&nbsp;</span></span>
133
		<br /><br />
133
		<br /><br />
134
		<!-- END switch_mod_option -->
134
		<!-- END switch_mod_option -->
135
		{PAGE_NUMBER}
135
		{PAGE_NUMBER}

Updated ip/trunk/templates/default/modcp_viewip.tpl Download diff

170171
1
<!-- INCLUDE overall_header.tpl -->
2
3
{IMG_THL}{IMG_THC}<span class="forumlink">{L_IP_INFO}</span>{IMG_THR}<table class="forumlinenb" width="100%"
cellspacing="0" cellpadding="0">
1
{IMG_THL}{IMG_THC}<span class="forumlink">{L_IP_INFO}</span>{IMG_THR}<table class="forumlinenb" width="100%"
cellspacing="0" cellpadding="0">
4
<tr><th>{L_THIS_POST_IP}</th></tr>
2
<tr><th>{L_THIS_POST_IP}</th></tr>
5
<tr>
3
<tr>
...
...
38
	</td>
36
	</td>
39
</tr>
37
</tr>
40
<!-- END iprow -->
38
<!-- END iprow -->
41
</table>{IMG_TFL}{IMG_TFC}{IMG_TFR}
39
</table>{IMG_TFL}{IMG_TFC}{IMG_TFR}
42
43
<!-- INCLUDE overall_footer.tpl -->

Updated ip/trunk/templates/default/search_username.tpl Download diff

170171
5
<!-- ENDIF -->
5
<!-- ENDIF -->
6
6
7
<script type="text/javascript">
7
<script type="text/javascript">
8
<!--
8
// <![CDATA[
9
function refresh_username(selected_username)
9
function refresh_username(selected_username)
10
{
10
{
11
	target_form_name = '{S_TARGET_FORM_NAME}';
12
	target_element_name = '{S_TARGET_ELEMENT_NAME}';
13
14
	var doc;
15
16
	if (document.forms[target_form_name])
17
	{
18
		doc = document;
19
	}
20
	else
21
	{
22
		doc = opener.document;
23
	}
24
25
	var target_element = doc.forms[target_form_name].elements[target_element_name];
26
27
11
	if (selected_username == '-1')
28
	if (selected_username == '-1')
12
	{
29
	{
13
		return;
30
		return;
14
	}
31
	}
15
	opener.document.forms['post'].username.value = selected_username;
32
	//opener.document.forms['post'].username.value = selected_username;
33
	target_element.value = selected_username;
16
	opener.focus();
34
	opener.focus();
17
	window.close();
35
	window.close();
18
}
36
}
19
//-->
37
// ]]>
20
</script>
38
</script>
21
39
22
<form method="post" name="search" action="{S_SEARCH_ACTION}">
40
<form method="post" name="search" action="{S_SEARCH_ACTION}">
...
...
32
		<span class="genmed" id="username_list" {USERNAME_LIST_VIS}>
50
		<span class="genmed" id="username_list" {USERNAME_LIST_VIS}>
33
			{L_UPDATE_USERNAME}<br />
51
			{L_UPDATE_USERNAME}<br />
34
			<span id="username_select"><select name="username_list">{S_USERNAME_OPTIONS}</select></span>&nbsp;
52
			<span id="username_select"><select name="username_list">{S_USERNAME_OPTIONS}</select></span>&nbsp;
35
			<input type="submit" class="liteoption"
onclick="refresh_username(this.form.username_list.options[this.form.username_list.selectedIndex].value);return false;" name="use"
value="{L_SELECT}" />
53
			<input type="submit" class="liteoption" onclick="refresh_username(this.form.username_list.options[this.form.username_list.selectedIndex].value); return false;" name="use" value="{L_SELECT}" />
36
		</span><br />
54
		</span><br />
37
		<br /><span class="genmed"><a href="javascript:window.close();"
class="genmed">{L_CLOSE_WINDOW}</a></span>
55
		<br /><span class="genmed"><a href="javascript:window.close();"
class="genmed">{L_CLOSE_WINDOW}</a></span>
38
	</td>
56
	</td>

Updated ip/trunk/templates/default/uploaded_image_bbc_popup.tpl Download diff

170171
1
<!-- INCLUDE simple_header.tpl -->
1
<!-- INCLUDE simple_header.tpl -->
2
2
3
<script type="text/javascript">
3
<script type="text/javascript">
4
<!--
4
// <![CDATA[
5
5
6
function bbcb_ui_vars_reassign_start()
6
function bbcb_ui_vars_reassign_start()
7
{
7
{
...
...
59
	txtarea.focus();
59
	txtarea.focus();
60
}
60
}
61
61
62
//-->
62
// ]]>
63
</script>
63
</script>
64
64
65
<form action="{S_ACTION}" name="select_all" method="post" enctype="multipart/form-data">
65
<form action="{S_ACTION}" name="select_all" method="post" enctype="multipart/form-data">