Active
Project:
Text Link Ads Integration
Version:
5.x-1.x-dev
Component:
Documentation
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
24 Feb 2008 at 01:23 UTC
Updated:
17 May 2008 at 21:26 UTC
First this is NOT a problem with the TLA module itself, but a quirk in the function that lets Blocks be put in specific pages. If the page you want to place your TLA ad on has a Plus sign in it you need to use PHP to select the page to include the block on. A copy of the code I used is included below:
<?php
$match = FALSE;
$url = request_uri();
if (strpos($url, "topics/court+us/fisa+foreign+intelligence+surveillance+act")) {
$match = TRUE;
}
return $match;
?>This is more important since we can now have multiple XML tags on a single site.
Comments
Comment #1
gregglesI guess this should be added to the README.txt so I'll mark this as a task.