View Single Post
  #4 (permalink)  
Old 10-12-2009, 11:18 AM
eugene_b eugene_b is offline
Web Scribble Staff
 
Join Date: Jul 2009
Posts: 280
Default

Hi,

Redirects are done by a function called header(). There are two of them in jconnector_server.php and they look like this
Code:
header('Location: '.str_replace('modules/mod_jconnector/', '', JURI::base()));
For example by changing them to
Code:
header('Location: '.str_replace('modules/mod_jconnector/', '', JURI::base()).'?option=com_comprofiler');
I get a redirect to the user profile page (I run Community Builder extension).

If you have any more questions or something is not fully clear, please feel free to ask me.
Reply With Quote