How to delete these mailto links ?
I have another problem : the function send2friend doesn't work anymore : The mail is sending but nothing after. I haven't touch any php file . What could be the problem ? mod_rewrite ?
Thanks !
Email in open question (edit: and in the 2.0 version ?)
Moderator: Thorsten
Email in open question (edit: and in the 2.0 version ?)
Last edited by skiverman on Mon Apr 30, 2007 10:49 am, edited 1 time in total.
Hi,
which version do you use?
bye
Thorsten
which version do you use?
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
Hi,
to remove the e-mail link in open questions, just open the file inc/functions.php and change this line
to
I cannot reproduce your Send2Friends problem. The other problem will be fixed in 1.6.11.
bye
Thorsten
to remove the e-mail link in open questions, just open the file inc/functions.php and change this line
Code: Select all
$output .= "\t\t<td valign=\"top\" nowrap=\"nowrap\"><a name=\"openq_".$row->id."\">".makeDate($row->ask_date)."</a><br /><a href=\"mailto:".safeEmail($row->ask_usermail)."\">".$row->ask_username."</a></td>\n";
Code: Select all
$output .= "\t\t<td valign=\"top\" nowrap=\"nowrap\"><a name=\"openq_".$row->id."\">".makeDate($row->ask_date)."</a><br />".$row->ask_username."</td>\n";
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
Hi,
open inc/Faq.php on line 2672 and edit:
to
bye
Thorsten
open inc/Faq.php on line 2672 and edit:
Code: Select all
$output .= sprintf('<td valign="top" nowrap="nowrap">%s<br /><a href="mailto:%s">%s</a></td>',
makeDate($row->ask_date),
safeEmail($row->ask_usermail),
$row->ask_username);
Code: Select all
$output .= sprintf('<td valign="top" nowrap="nowrap">%s<br />%s</td>',
makeDate($row->ask_date),
$row->ask_username);
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist