Revision 1445
Added by Dietmar over 13 years ago
branches/2.8.x/CHANGELOG | ||
---|---|---|
11 | 11 |
! = Update/Change |
12 | 12 |
|
13 | 13 |
------------------------------------- 2.8.2 ------------------------------------- |
14 |
22 Apr-2011 Build 1443 Dietmar Woellbrink (Luisehahne) |
|
14 |
27 Apr-2011 Build 1445 Dietmar Woellbrink (Luisehahne) |
|
15 |
# small validation fixes in backend themes |
|
16 |
22 Apr-2011 Build 1444 Dietmar Woellbrink (Luisehahne) |
|
15 | 17 |
# fix wrong url in captacha |
16 | 18 |
19 Apr-2011 Build 1443 Dietmar Woellbrink (Luisehahne) |
17 | 19 |
! remove auto including YUI Framework in backend for modules, enable with ->print_footer(true) |
branches/2.8.x/wb/admin/interface/version.php | ||
---|---|---|
52 | 52 |
|
53 | 53 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
54 | 54 |
if(!defined('VERSION')) define('VERSION', '2.8.2.RC5'); |
55 |
if(!defined('REVISION')) define('REVISION', '1444');
|
|
55 |
if(!defined('REVISION')) define('REVISION', '1445');
|
|
56 | 56 |
|
57 | 57 |
?> |
branches/2.8.x/wb/templates/wb_theme/templates/error.htt | ||
---|---|---|
1 | 1 |
<!-- BEGIN main_block --> |
2 |
<div style='text-align:center;'>
|
|
3 |
<p>{MESSAGE}</p>
|
|
4 |
<p><a href="{LINK}">{BACK}</a></p>
|
|
2 |
<div style="text-align:center;">
|
|
3 |
{MESSAGE}<br />
|
|
4 |
<h3 style="text-align:center;"><a href="{LINK}">{BACK}</a></h3>
|
|
5 | 5 |
</div> |
6 | 6 |
<!-- END main_block --> |
branches/2.8.x/wb/templates/wb_theme/templates/success.htt | ||
---|---|---|
1 |
<!-- BEGIN main_block -->
|
|
2 |
<div class="error_box">
|
|
3 |
<p>{MESSAGE}</p>
|
|
4 |
<!-- BEGIN show_redirect_block -->
|
|
5 |
<script language="javascript" type="text/javascript">
|
|
6 |
setTimeout("location.href='{REDIRECT}'", {REDIRECT_TIMER});
|
|
7 |
</script>
|
|
8 |
<!-- END show_redirect_block -->
|
|
9 |
<p><a href="{REDIRECT}" title="{NEXT}">{BACK}</a></p>
|
|
10 |
</div>
|
|
1 |
<!-- BEGIN main_block --> |
|
2 |
<div class="error_box"> |
|
3 |
{MESSAGE}<br />
|
|
4 |
<!-- BEGIN show_redirect_block --> |
|
5 |
<script type="text/javascript">
|
|
6 |
setTimeout("location.href='{REDIRECT}'", {REDIRECT_TIMER}); |
|
7 |
</script> |
|
8 |
<!-- END show_redirect_block --> |
|
9 |
<h3 style="text-align:center;"><a href="{REDIRECT}" title="{NEXT}">{BACK}</a></h3>
|
|
10 |
</div> |
|
11 | 11 |
<!-- END main_block --> |
branches/2.8.x/wb/templates/argos_theme/templates/error.htt | ||
---|---|---|
1 | 1 |
<!-- BEGIN main_block --> |
2 |
<div style='text-align:center;'>
|
|
3 |
<p>{MESSAGE}</p>
|
|
4 |
<p><a href="{LINK}">{BACK}</a></p>
|
|
2 |
<div style="text-align:center;">
|
|
3 |
{MESSAGE}<br />
|
|
4 |
<h3 style="text-align:center;"><a href="{LINK}">{BACK}</a></h3>
|
|
5 | 5 |
</div> |
6 | 6 |
<!-- END main_block --> |
branches/2.8.x/wb/templates/argos_theme/templates/success.htt | ||
---|---|---|
1 |
<!-- BEGIN main_block -->
|
|
2 |
<div class="error_box">
|
|
3 |
<p>{MESSAGE}</p>
|
|
4 |
<!-- BEGIN show_redirect_block -->
|
|
5 |
<script language="javascript" type="text/javascript">
|
|
6 |
setTimeout("location.href='{REDIRECT}'", {REDIRECT_TIMER});
|
|
7 |
</script>
|
|
8 |
<!-- END show_redirect_block -->
|
|
9 |
<p><a href="{REDIRECT}" title="{NEXT}">{BACK}</a></p>
|
|
10 |
</div>
|
|
1 |
<!-- BEGIN main_block --> |
|
2 |
<div class="error_box"> |
|
3 |
{MESSAGE}<br />
|
|
4 |
<!-- BEGIN show_redirect_block --> |
|
5 |
<script type="text/javascript">
|
|
6 |
setTimeout("location.href='{REDIRECT}'", {REDIRECT_TIMER}); |
|
7 |
</script> |
|
8 |
<!-- END show_redirect_block --> |
|
9 |
<h3 style="text-align:center;"><a href="{REDIRECT}" title="{NEXT}">{BACK}</a></h3>
|
|
10 |
</div> |
|
11 | 11 |
<!-- END main_block --> |
Also available in: Unified diff
small validation fixes in backend themes