summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Haerter <development@andreas-haerter.com>2011-06-17 02:41:10 +0200
committerAndreas Gohr <andi@splitbrain.org>2011-07-10 09:49:52 +0200
commit881f2ee268e95e0cdd02bf593d89ca9b42d03060 (patch)
tree9bfdb173147f606d597c8cdaf692f5c35ba7cb82
parentff9f537503912e41605048e604fb938256468001 (diff)
downloadrpg-881f2ee268e95e0cdd02bf593d89ca9b42d03060.tar.gz
rpg-881f2ee268e95e0cdd02bf593d89ca9b42d03060.tar.bz2
updated doc for tpl_indexerWebBug()
-rw-r--r--inc/template.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/inc/template.php b/inc/template.php
index b9b3951ff..a476e78ab 100644
--- a/inc/template.php
+++ b/inc/template.php
@@ -972,8 +972,7 @@ function _tpl_img_action($data, $param=NULL) {
}
/**
- * This function inserts a 1x1 pixel gif which in reality
- * is the indexer function.
+ * This function inserts a small gif which in reality is the indexer function.
*
* Should be called somewhere at the very end of the main.php
* template
@@ -986,7 +985,7 @@ function tpl_indexerWebBug(){
$p = array();
$p['src'] = DOKU_BASE.'lib/exe/indexer.php?id='.rawurlencode($ID).
'&'.time();
- $p['width'] = 2;
+ $p['width'] = 2; //no more 1x1 px image because we live in times of ad blockers...
$p['height'] = 1;
$p['alt'] = '';
$att = buildAttributes($p);