Revision 647
Added by doc almost 17 years ago
trunk/CHANGELOG | ||
---|---|---|
10 | 10 |
# = Bugfix |
11 | 11 |
! = Update/Change |
12 | 12 |
|
13 |
------------------------------------- 2.7.0 ------------------------------------- |
|
14 |
30-Jan-2008 Thomas Hornik |
|
15 |
# registered pages didn't appear in menu. fixed. |
|
16 |
! Updated upgrade-script. (Some upgrades still missing) |
|
17 |
29-Jan-2008 Thomas Hornik |
|
18 |
# strtotime()'s behavior differ in PHP4 and PHP5. |
|
19 |
Had to fix some issues in admin/pages/sections and module news. |
|
20 |
# Security bugfix: Text file for text-captcha was world-readable. Moved to database. |
|
13 |
------------------------------------- 2.7.0 ------------------------------------- |
|
14 |
30-Jan-2008 Christian Sommer |
|
15 |
# fixed bug with text Captcha (input was restricted to 10 chars.) and a small layout issue |
|
16 |
30-Jan-2008 Thomas Hornik |
|
17 |
# registered pages didn't appear in menu. fixed. |
|
18 |
! Updated upgrade-script. (Some upgrades still missing) |
|
19 |
29-Jan-2008 Thomas Hornik |
|
20 |
# strtotime()'s behavior differ in PHP4 and PHP5. |
|
21 |
Had to fix some issues in admin/pages/sections and module news. |
|
22 |
# Security bugfix: Text file for text-captcha was world-readable. Moved to database. |
|
21 | 23 |
# Text-captcha: empty line in text file, following a question, was accepted as answer. Fixed. |
22 | 24 |
28-Jan-2008 Matthias Gallas |
23 | 25 |
# Replaced all special chars in language files with htmlentities or unicode |
... | ... | |
31 | 33 |
! added possibility to select the default backend language during installation process |
32 | 34 |
! Re-introduced Changeset 593 (filename in pages/ from page_title instead of menu_title) |
33 | 35 |
# Fixed some bugs in the Javascript Admin modul |
34 |
28-Jan-2008 Thomas Hornik |
|
36 |
28-Jan-2008 Thomas Hornik
|
|
35 | 37 |
+ Allow a user-supplied From-Name in form-settings for email und success-email. |
36 | 38 |
! changeset 627: menu_link and search/search.php needs some minor changes, too. |
37 | 39 |
+ Added Text-CAPTCHA on request. The captcha-text will be stored in temp/.captcha_text.txt |
trunk/wb/include/captcha/captcha.php | ||
---|---|---|
89 | 89 |
case 'text': // text-captcha |
90 | 90 |
?><table class="captcha_table"><tr> |
91 | 91 |
<td class="text_captcha"><?php include(WB_PATH.'/include/captcha/captchas/text.php'); ?></td> |
92 |
<td><input type="text" name="captcha" maxlength="10" style="width:70px" /></td>
|
|
92 |
<td><input type="text" name="captcha" maxlength="50" style="width:150px" /></td>
|
|
93 | 93 |
<td class="captcha_expl"><?php echo $MOD_CAPTCHA['VERIFICATION_INFO_QUEST']; ?></td> |
94 | 94 |
</tr></table><?php |
95 | 95 |
break; |
trunk/wb/admin/login/warning.html | ||
---|---|---|
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
|
2 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> |
|
3 |
<head> |
|
4 |
<title>Maximum Invalid Login Attemps Exceeded</title> |
|
5 |
<style type="text/css"><!-- |
|
6 |
body,td,th { |
|
7 |
font-family: Verdana, Arial, Helvetica, sans-serif; |
|
8 |
font-size: 12px; |
|
9 |
color: #000000; |
|
10 |
} |
|
11 |
body { |
|
12 |
margin: 0px; |
|
13 |
background: #fff url(../interface/background.png) ;
|
|
14 |
background-repeat:repeat-x;
|
|
15 |
} |
|
16 |
a:link, a:visited, a:active { |
|
17 |
color: #003366; |
|
18 |
text-decoration: none; |
|
19 |
} |
|
20 |
a:hover { |
|
21 |
text-decoration: underline; |
|
22 |
color: #336699; |
|
23 |
} |
|
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
|
2 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
|
3 |
<head>
|
|
4 |
<title>Maximum Invalid Login Attemps Exceeded</title>
|
|
5 |
<style type="text/css"><!--
|
|
6 |
body,td,th {
|
|
7 |
font-family: Verdana, Arial, Helvetica, sans-serif;
|
|
8 |
font-size: 12px;
|
|
9 |
color: #000000;
|
|
10 |
}
|
|
11 |
body {
|
|
12 |
margin: 0px;
|
|
13 |
background: #95C8F0 url(../interface/background.png) ;
|
|
14 |
background-repeat:repeat-x; |
|
15 |
}
|
|
16 |
a:link, a:visited, a:active {
|
|
17 |
color: #003366;
|
|
18 |
text-decoration: none;
|
|
19 |
}
|
|
20 |
a:hover {
|
|
21 |
text-decoration: underline;
|
|
22 |
color: #336699;
|
|
23 |
}
|
|
24 | 24 |
h1 { |
25 | 25 |
text-align: center; |
26 | 26 |
font-size: 16px; |
27 | 27 |
color: #fff; |
28 | 28 |
text-transform: uppercase; |
29 | 29 |
} |
30 |
hr { |
|
31 |
height: 1px; |
|
32 |
color: #336699; |
|
33 |
background-color: #336699; |
|
34 |
border: 0; |
|
35 |
} |
|
36 |
--></style></head> |
|
37 |
<body> |
|
38 |
|
|
39 |
<center> |
|
40 |
<br /> |
|
41 |
<h1>Excessive Invalid Logins</h1> |
|
42 |
You have attempted to login too many times |
|
43 |
</center> |
|
44 |
|
|
45 |
</body> |
|
30 |
hr {
|
|
31 |
height: 1px;
|
|
32 |
color: #336699;
|
|
33 |
background-color: #336699;
|
|
34 |
border: 0;
|
|
35 |
}
|
|
36 |
--></style></head>
|
|
37 |
<body>
|
|
38 |
|
|
39 |
<center>
|
|
40 |
<br />
|
|
41 |
<h1>Excessive Invalid Logins</h1>
|
|
42 |
You have attempted to login too many times
|
|
43 |
</center>
|
|
44 |
|
|
45 |
</body>
|
|
46 | 46 |
</html> |
Also available in: Unified diff
fixed bug with text Captcha (input restricted to 10 characters) and a small layout issue