![]() |
Codeigniter using Roundcube email system - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Codeigniter using Roundcube email system (/showthread.php?tid=32437) |
Codeigniter using Roundcube email system - El Forum - 07-23-2010 [eluser]Aakika[/eluser] We have a roundcube email system using codeigniter for the permission process. Each time a recipient chooses a permission option - Accept, Reject or Report Abuse, a new window opens. The permission process is done in codeigniter. How do I prevent a new window from opening? To read emails or access any other roundcube option, stays in same window. So the question is what is missing in the codeigniter code that interfaces with Roundcube? Here is the code which link resides in the html code of the body of the email sent: <a style="background-color:yellow;width:auto; height:30px; padding:5px; color:white; text-decoration:none; font-weight:bold; border:0px solid #BDC0C2; -moz-border-radius: 10px;" target="_self" target="_self" href="http://mobile.aakika.com/index.php/mobile/acceptRequest/<?php echo $iduser;?>/<?php echo $idfriend;?>">Accept</a> Any suggestion will be greatly appreciated. |