Revision 1444
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) |
|
15 |
# fix wrong url in captacha |
|
14 | 16 |
19 Apr-2011 Build 1443 Dietmar Woellbrink (Luisehahne) |
15 | 17 |
! remove auto including YUI Framework in backend for modules, enable with ->print_footer(true) |
16 | 18 |
! ->print_error and ->print_success too accept a message as array |
branches/2.8.x/wb/include/captcha/captcha.php | ||
---|---|---|
35 | 35 |
$output .= "\t\t<title>captcha</title>\n\t</head>\n\t<body>\n"; |
36 | 36 |
$_SESSION['captcha_time'] = $t; |
37 | 37 |
if($kind=='image') { |
38 |
$output .= "\t\t<a title=\"reload\" href=\"".WB_REL."/include/captcha/captcha.php?display_captcha_X986E21=2\">";
|
|
39 |
$output .= "<img style=\"border: none;\" src=\"".WB_REL."/include/captcha/captchas/";
|
|
38 |
$output .= "\t\t<a title=\"reload\" href=\"".WB_URL."/include/captcha/captcha.php?display_captcha_X986E21=2\">";
|
|
39 |
$output .= "<img style=\"border: none;\" src=\"".WB_URL."/include/captcha/captchas/";
|
|
40 | 40 |
$output .= CAPTCHA_TYPE.".php?t=".$t."\" alt=\"Captcha\" /></a>\n"; |
41 | 41 |
} else { |
42 | 42 |
$output .= "\t\t<h2>error</h2>"; |
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', '1443');
|
|
55 |
if(!defined('REVISION')) define('REVISION', '1444');
|
|
56 | 56 |
|
57 | 57 |
?> |
Also available in: Unified diff
fix wrong url in captacha