Bugs » linkex problem with reciprocal links for other linkex members

added on Feb 29, 2008 by G
Hi,

I am trying to do linkex with other members. For example, here is one:

http://www.sevastopol-apartments.com/linkex/index.php

When I setup their links, the link check fails, because linkex escapes double quotes.

So, while the above site requests links like this:
<a href="http://www.sevastopol-apartments.com" title="Short-term apartment rentals, hotels, houses,
flats in Sevastopol.">Short-term apartment rentals, hotels, houses, flats in Sevastopol.</a>



My linkex outputes escaped stuff like this:

<a href=\"http://www.sevastopol-apartments.com\" title=\"Short-term apartment rentals, hotels, houses,
flats in Sevastopol.\">Short-term apartment rentals, hotels, houses, flats in Sevastopol.</a>

How can I solve this?
added on Mar 1, 2008 by G
Hey,

I just checked some other linkex output, and it seems that it is my own php setup adding the escapes before the double
quotes, will be checking that out now...
added on Mar 1, 2008 by G
I added the following at line 1240, and it solved my problem, no more escaping of double quotes...

AFTER
function _generate( $links, $postfix='', $variables=array() ) { // {{{
global $config;

$buffer = "";

$linklist = array();
$template = $this->template;

ADD

$template = stripslashes ($template);

Add reply

This thread has been inactive for more than 14 days, so it has been locked.

Feel free to create a new thread with your questions.