Wiki source for Mod003bLinkTrackingInHeadersFooters
==== Wikka Mod 003 ====
----
===Credit:===
**[[http://www.wakkawiki.com/MarkLentczner | MarkLentczner]]**
[[http://www.wakkawiki.com/LinkFormattingFix | LinkFormattingFix @ WakkaWiki]]
ArchiveLinkFormattingFix
----
Bug with link tracking in headers and footers (these links shouldn't count as back links to a page):
function Header() { return $this->Action($this->""GetConfigValue""("header_action"), 1); }
function Footer() { return $this->Action($this->""GetConfigValue""("footer_action"), 1); }
to
function Header() { return $this->Action($this->""GetConfigValue""("header_action"), 0); }
function Footer() { return $this->Action($this->""GetConfigValue""("footer_action"), 0); }
The 1's are changed to 0's.
----
==Wikka Notes==
Unsure if this is necessary. Feedback welcome.
----
===Credit:===
**[[http://www.wakkawiki.com/MarkLentczner | MarkLentczner]]**
[[http://www.wakkawiki.com/LinkFormattingFix | LinkFormattingFix @ WakkaWiki]]
ArchiveLinkFormattingFix
----
Bug with link tracking in headers and footers (these links shouldn't count as back links to a page):
function Header() { return $this->Action($this->""GetConfigValue""("header_action"), 1); }
function Footer() { return $this->Action($this->""GetConfigValue""("footer_action"), 1); }
to
function Header() { return $this->Action($this->""GetConfigValue""("header_action"), 0); }
function Footer() { return $this->Action($this->""GetConfigValue""("footer_action"), 0); }
The 1's are changed to 0's.
----
==Wikka Notes==
Unsure if this is necessary. Feedback welcome.