Project

General

Profile

« Previous | Next » 

Revision 742

Added by doc over 16 years ago

fixed issue with smart view URL link

View differences:

trunk/CHANGELOG
10 10
# = Bugfix
11 11
! = Update/Change
12 12

  
13
------------------------------------- 2.7.0 -------------------------------------
14
03-Mar-2008 Thomas Hornik
15
#	fixed an issue with text-captcha (default text got saved). Changes default text.
16
#	fixed an issue with highlighting
17
02-Mar-2008 Thomas Hornik
18
#	added missing text in language-files
19
+	added missing sorting to language dropdown in admin/pages/settings.php
20
01-Mar-2008 Thomas Hornik
21
#	fixed ticket #562, applied changes from user tavitar with some own additions
22
+	added check for AddDefaultCharset to install
23
29-Feb-2008 Thomas Hornik
24
#	fixed issue in pagename generation if AddDefaultCharset is set (as work-around).
25
28-Feb-2008 Thomas Hornik
13
------------------------------------- 2.7.0 -------------------------------------
14
04-Mar-2008 Christian Sommer
15
#	fixed issue with smart view URL link
16
03-Mar-2008 Thomas Hornik
17
#	fixed an issue with text-captcha (default text got saved). Changes default text.
18
#	fixed an issue with highlighting
19
02-Mar-2008 Thomas Hornik
20
#	added missing text in language-files
21
+	added missing sorting to language dropdown in admin/pages/settings.php
22
01-Mar-2008 Thomas Hornik
23
#	fixed ticket #562, applied changes from user tavitar with some own additions
24
+	added check for AddDefaultCharset to install
25
29-Feb-2008 Thomas Hornik
26
#	fixed issue in pagename generation if AddDefaultCharset is set (as work-around).
27
28-Feb-2008 Thomas Hornik
26 28
#	fixed hebrew transliteration-table. Thanks to forum-member iti.
27 29
28-Feb-2008	Christian Sommer
28 30
#	added bugfix from the forum member tavitar to fix an issue with multiple groups (module permission do not add up properly)
trunk/wb/admin/interface/header.html
3 3
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4 4
<head>
5 5
<title>{WEBSITE_TITLE} >> {TEXT_ADMINISTRATION} - {SECTION_NAME}</title>
6
<link href="{INTERFACE_DIR}/stylesheet.css" rel="stylesheet" type="text/css" />
6
<link href="{ADMIN_URL}/interface/stylesheet.css" rel="stylesheet" type="text/css" />
7 7
<meta http-equiv="content-type" content="text/html; charset={CHARSET}" />
8 8
{BACKEND_MODULE_CSS}
9 9
{BACKEND_MODULE_JS}
......
17 17
<table cellpadding="0" cellspacing="0" border="0" width="770" align="center">
18 18
<tr>
19 19
	<td width="60" valign="top">
20
		<a href="{WB_URL}/admin" title="{TITLE_START}"><img src="{INTERFACE_DIR}/logo.png" border="0" alt="Logo" /></a>
20
		<a href="{ADMIN_URL}" title="{TITLE_START}"><img src="{ADMIN_URL}/interface/logo.png" border="0" alt="Logo" /></a>
21 21
	</td>
22 22
	<td width="5">&nbsp;</td>
23 23
	<td style="font-size: 14px;" valign="top" align="right">
24
         <a href="{WB_URL}/admin" title="{TITLE_START}"><img src="{WB_URL}/admin/images/home.png" border="0" alt="{TITLE_START}" /></a>
25
         &nbsp;&nbsp;<a href="{URL_VIEW}/" target="_blank" title="{TITLE_VIEW}"><img src="{WB_URL}/admin/images/view.png" border="0" alt="{WB_URL}" /></a>
26
	&nbsp; <a href="{URL_HELP}" target="_blank" title="{TITLE_HELP}"><img src="{WB_URL}/admin/images/help.png" border="0" alt="{TITLE_HELP}" /></a>
27
         &nbsp; <a href="{WB_URL}/admin/logout" title="{TITLE_LOGOUT}"><img src="{WB_URL}/admin/images/dl.png" border="0" alt="{TITLE_LOGOUT}" /></a>
24
         <a href="{ADMIN_URL}" title="{TITLE_START}"><img src="{ADMIN_URL}/images/home.png" border="0" alt="{TITLE_START}" /></a>
25
         &nbsp;&nbsp;<a href="{URL_VIEW}" target="_blank" title="{TITLE_VIEW}"><img src="{ADMIN_URL}/images/view.png" border="0" alt="{WB_URL}" /></a>
26
	&nbsp; <a href="{URL_HELP}" target="_blank" title="{TITLE_HELP}"><img src="{ADMIN_URL}/images/help.png" border="0" alt="{TITLE_HELP}" /></a>
27
         &nbsp; <a href="{ADMIN_URL}/logout" title="{TITLE_LOGOUT}"><img src="{ADMIN_URL}/images/dl.png" border="0" alt="{TITLE_LOGOUT}" /></a>
28 28
</td>
29 29
	<td width="100" align="right" style="padding-top: 10px; padding-right: 15px; color: #fff;">
30 30
	Version {VERSION}
trunk/wb/framework/class.admin.php
121 121

  
122 122
		$header_template->set_var(	array(
123 123
													'SECTION_NAME' => $MENU[strtoupper($this->section_name)],
124
													'INTERFACE_DIR' => ADMIN_URL.'/interface',
125 124
													'BODY_TAGS' => $body_tags,
126 125
													'WEBSITE_TITLE' => ($title['value']),
127 126
													'TEXT_ADMINISTRATION' => $TEXT['ADMINISTRATION'],
128 127
													'CHARSET' => $charset,
129 128
													'VERSION' => VERSION,
130 129
													'WB_URL' => WB_URL,
130
													'ADMIN_URL' => ADMIN_URL,
131 131
													'TITLE_START' => $MENU['START'],
132 132
													'TITLE_VIEW' => $MENU['VIEW'],
133 133
													'TITLE_HELP' => $MENU['HELP'],

Also available in: Unified diff