Revision 2106
Added by darkviper almost 11 years ago
- fixed HTTP_ACCEPT_ENCODING problem with Chrome in SecureForm.mtab.php
- fixed Typo in SecureForm.mtab.php and SecureForm.php
| branches/2.8.x/CHANGELOG | ||
|---|---|---|
| 11 | 11 |
! = Update/Change |
| 12 | 12 |
=============================================================================== |
| 13 | 13 |
|
| 14 |
24 Nov-2014 Build 2106 Manuela v.d.Decken(DarkViper) |
|
| 15 |
# fixed HTTP_ACCEPT_ENCODING problem with Chrome in SecureForm.mtab.php |
|
| 16 |
# fixed Typo in SecureForm.mtab.php and SecureForm.php |
|
| 14 | 17 |
24 Nov-2014 Build 2105 Manuela v.d.Decken(DarkViper) |
| 15 | 18 |
- removed importSql() method from class WbDatabase |
| 16 | 19 |
+ new class SqlImport added |
| branches/2.8.x/wb/admin/interface/version.php | ||
|---|---|---|
| 51 | 51 |
|
| 52 | 52 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
| 53 | 53 |
if(!defined('VERSION')) define('VERSION', '2.8.4');
|
| 54 |
if(!defined('REVISION')) define('REVISION', '2105');
|
|
| 54 |
if(!defined('REVISION')) define('REVISION', '2106');
|
|
| 55 | 55 |
if(!defined('SP')) define('SP', '');
|
| branches/2.8.x/wb/framework/SecureForm.mtab.php | ||
|---|---|---|
| 246 | 246 |
|
| 247 | 247 |
if($as_tag == true) |
| 248 | 248 |
{ // by default return a complete, hidden <input>-tag
|
| 249 |
return '<input type="hidden" name="'.$this->_tokenname.'" value="'.htmlspecialchars($signed).'" title="" alt="" />';
|
|
| 249 |
return '<input type="hidden" name="'.$this->_tokenname.'" value="'.htmlspecialchars($signed).'" title=" " />';
|
|
| 250 | 250 |
}else{ // return an array with raw tokenname=value
|
| 251 | 251 |
return $this->_tokenname.'='.$signed; |
| 252 | 252 |
} |
| ... | ... | |
| 459 | 459 |
$fingerprint=$fpsalt; |
| 460 | 460 |
if (isset($_SERVER['HTTP_USER_AGENT'])){ $fingerprint .= $_SERVER['HTTP_USER_AGENT'];}
|
| 461 | 461 |
if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])){ $fingerprint .= $_SERVER['HTTP_ACCEPT_LANGUAGE'];}
|
| 462 |
if (isset($_SERVER['HTTP_ACCEPT_ENCODING'])){ $fingerprint .= $_SERVER['HTTP_ACCEPT_ENCODING'];}
|
|
| 462 |
// if (isset($_SERVER['HTTP_ACCEPT_ENCODING'])){ $fingerprint .= $_SERVER['HTTP_ACCEPT_ENCODING'];}
|
|
| 463 | 463 |
if (isset($_SERVER['HTTP_ACCEPT_CHARSET'])){ $fingerprint .= $_SERVER['HTTP_ACCEPT_CHARSET'];}
|
| 464 | 464 |
|
| 465 | 465 |
$fingerprint.= $this->_getip($this->_useipblocks); |
| branches/2.8.x/wb/framework/SecureForm.php | ||
|---|---|---|
| 154 | 154 |
$ftan = $this->_calcFtan($this->_FTAN); |
| 155 | 155 |
if((is_string($mode) && strtolower($mode) == 'post') || ($mode === true)) |
| 156 | 156 |
{ // by default return a complete, hidden <input>-tag
|
| 157 |
return '<input type="hidden" name="'.$ftan[0].'" value="'.$ftan[1].'" title="" alt="" />';
|
|
| 157 |
return '<input type="hidden" name="'.$ftan[0].'" value="'.$ftan[1].'" title=" " />';
|
|
| 158 | 158 |
}else{ // return an string with GET params (FTAN0=FTAN1)
|
| 159 | 159 |
return $ftan[0].'='.$ftan[1]; |
| 160 | 160 |
} |
Also available in: Unified diff