|
|
Re:Link in marker does not work (HACK INCLUDED) - 2008/02/05 16:14
Yvonne, Here is the code you can add to solve this problem. I've tested this with Joomla 1.5 stable:
| Code: |
//$description = mosGetParam( $_REQUEST, 'description', '', _MOS_ALLOWHTML );
$description = $_REQUEST[description];
if (!get_magic_quotes_gpc()) {
$description = addslashes( $description );
}
|
This code can be added in the markercontroller.class.php file in a function called saveMarker. This will temporarily fix the problem.
I have this fixed in a build I'm testing that have some minor fixes in. If you want me to just send you the build I'm working with, shoot me an email.
Let me know.
Chris
The administrator has disabled public write access.
|
|
|
Re:Link in marker does not work (HACK INCLUDED) - 2008/02/06 01:06
Do you have any plans for the release date of that build?
The administrator has disabled public write access.
|
|
|
Re:Link in marker does not work (HACK INCLUDED) - 2008/02/06 20:17
Yes, there is a beta copy of it out there now for you to download. I am hoping I can get some initial feedback and do some additional testing on J1.0.13. If all is well, I will push it out this weekend. -Chris
The administrator has disabled public write access.
|
|
|
Re:Link in marker does not work (HACK INCLUDED) - 2008/02/07 00:41
cs1559 wrote: Yes, there is a beta copy of it out there now for you to download. I am hoping I can get some initial feedback and do some additional testing on J1.0.13. If all is well, I will push it out this weekend. -Chris Thank you for the update, around the weekend is fine for me for J1.0.13, just was curious.
The administrator has disabled public write access.
|
|
|
Re:Link in marker does not work (HACK INCLUDED) - 2008/02/07 18:57
OK I will try this!
Thanks
Yvonne
The administrator has disabled public write access.
|
|