Skip to content

Commit

Permalink
security fix! please update!
Browse files Browse the repository at this point in the history
updated robots and browsers list

git-svn-id: https://svn.typo3.org/TYPO3v4/Extensions/ke_stats/trunk@83210 735d13b6-9817-0410-8766-e36946ffe9aa
  • Loading branch information
chrisb committed Jan 15, 2014
1 parent 92ff8ff commit 1642eae
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
Current Trunk
* security fix! please update!
* New feature: scheduler task. Thanks to Jonathan Heilmann.
* New feature: added a changeable limitation of rows to show for each kind of view. Defaults to 1000.
* added dependency in ext_emconf.php PHP 5.3.
* little behaviour change: Now the current month ist pre-selected when entering the single month view, not the whole year (“all months”).
* bugfix: After manual grouping of the resultset we have to resort our array.
* moved changelog to "Changelog" file in the extension folder instead of keeping it in doc/manual.sxw.
* bugfix: fixed ordering in result table. Thanks to Jonathan Heilmann.
* task: updated browsers (Internet Explorer 11) and robots list

Version 1.1.2 (2013/12)
* security fix: please update

Version 1.1.1 (2012/10)
* made ke_stats compatible with TYPO3 6.0
Expand Down
3 changes: 2 additions & 1 deletion inc/browsers.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@
'MSIE 8.0' => 'Internet Explorer 8',
'MSIE 9.0' => 'Internet Explorer 9',
'MSIE 10.0' => 'Internet Explorer 10',
'MSIE 11.0' => 'Internet Explorer 11',
'Trident/7.0; rv:11' => 'Internet Explorer 11',
'MSIE' => 'Internet Explorer (other)',
'Trident' => 'Internet Explorer (other)',
'iPhone' => 'iPhone',
'iPad' => 'iPad',
'iPod' => 'iPod',
Expand Down
1 change: 1 addition & 0 deletions inc/robots.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
// List of robots (HTTP_USER_AGENTS)

$GLOBALS['robots'] = array(/*{{{*/
'Havij' => 'Havij Advanced SQL Injection',
'ilial/Nutch' => 'ilial/Nutch',
'nutch/Nutch' => 'nutch/Nutch',
'Mirago-Test-Robot' => 'Mirago-Test-Robot',
Expand Down
4 changes: 2 additions & 2 deletions pi1/class.tx_kestats_pi1.php
Original file line number Diff line number Diff line change
Expand Up @@ -381,9 +381,9 @@ function main($content,$conf) {
// get the element uid
if (!empty($extConf['uidParameterWrap'])) {
$extPiVars = t3lib_div::_GET($extConf['uidParameterWrap']);
$element_uid = $extPiVars[$extConf['uidParameter']];
$element_uid = intval($extPiVars[$extConf['uidParameter']]);
} else {
$element_uid = t3lib_div::_GET($extConf['uidParameter']);
$element_uid = intval(t3lib_div::_GET($extConf['uidParameter']));
}

// count this element if a single view uid is given
Expand Down

0 comments on commit 1642eae

Please sign in to comment.