Skip to content

Commit ebbf4a6

Browse files
committed
2.0.3
1 parent 4916c64 commit ebbf4a6

6 files changed

+22
-25
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.svn*
1+
.DS_Store

about/theme.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
$theme_author_email = "[email protected]";
66
$theme_link = "https://themes.formtools.org";
77
$theme_description = "A remodelling of the old grey-styled Form Tools 1.x theme.";
8-
$theme_version = "2.0.2";
8+
$theme_version = "2.0.3";
99
$theme_uses_swatches = "no";

images/favicon.ico

-2.43 KB
Binary file not shown.

modules_footer.tpl

+15-13
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,23 @@
44
</div>
55

66
<div id="left">
7-
<div class="nav_heading">
8-
{$LANG.phrase_module_nav}
9-
</div>
10-
<div id="module_nav">
11-
{ft_include file="module_menu.tpl"}
12-
</div>
7+
{if !$hide_nav_menu}
8+
<div class="nav_heading">
9+
{$LANG.phrase_module_nav}
10+
</div>
11+
<div id="module_nav">
12+
{ft_include file="module_menu.tpl"}
13+
</div>
1314

14-
<br />
15+
<br />
1516

16-
<div class="nav_heading">
17-
{$LANG.phrase_main_nav}
18-
</div>
19-
<div id="main_nav">
20-
{ft_include file="menu.tpl"}
21-
</div>
17+
<div class="nav_heading">
18+
{$LANG.phrase_main_nav}
19+
</div>
20+
<div id="main_nav">
21+
{ft_include file="menu.tpl"}
22+
</div>
23+
{/if}
2224
</div>
2325
</div>
2426

modules_header.tpl

+4-2
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,12 @@
3333
<body class="module_pages">
3434
3535
<div id="container">
36-
<div id="header">{if $settings.logo_link}<a href="{$settings.logo_link}">{/if}<img src="{$theme_url}/images/header_logo.jpg" width="392" height="60" border="0" />{if $settings.logo_link}</a>{/if}</div>
36+
<div id="header">
37+
{if isset($settings.logo_link) && !empty($settings.logo_link)}<a href="{$settings.logo_link}">{/if}<img src="{$theme_url}/images/header_logo.jpg" width="392" height="60" border="0" />{if isset($settings.logo_link) && !empty($settings.logo_link)}</a>{/if}
38+
</div>
3739
<div id="header_row">
3840
<div id="left_nav_top">
39-
{if $account.is_logged_in}
41+
{if !$hide_header_bar && $account.is_logged_in}
4042
{if $settings.release_type == "alpha"}
4143
<b>{$settings.program_version}-alpha-{$settings.release_date}</b>
4244
{elseif $settings.release_type == "beta"}

theme_config.php

+1-8
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
"css/views.css",
4141
"css/widgets.css",
4242
"footer.tpl",
43-
"forget_password.tpl",
4443
"header.tpl",
4544
"images/",
4645
"images/account_section_bg.jpg",
@@ -103,15 +102,9 @@
103102
"images/utilities.png",
104103
"images/utilities_small.png",
105104
"images/view.png",
106-
"index.tpl",
107-
"menu.tpl",
108-
"messages.tpl",
109-
"module_menu.tpl",
110105
"modules_footer.tpl",
111106
"modules_header.tpl",
112107
"scripts/",
113108
"scripts/jquery-ui-1.8.14.custom.min.js",
114-
"tabset_close.tpl",
115-
"tabset_open.tpl",
116109
"theme_config.php"
117-
);
110+
);

0 commit comments

Comments
 (0)