[eluser]dbelanger[/eluser]
Hey Madj Taby, thanks for your reply, appreciate it.
I've tried editing the crud.php file for the links and tried changing a link like this:
Code:
$config['edit_link'] = '?'.$this->implodeAssoc('=','&',array_merge($_GET,array('m'=>'manage','a'=>'edit','id'=>'{num}')));
to:
Code:
$config['edit_link'] = $this->implodeAssoc('=','&',array_merge($_GET,array('m'=>'manage','a'=>'edit','id'=>'{num}')));
removing the question mark to try and have only one in my url. I thought this would do it but it results in:
Code:
http://www.site.com/backend.php?/c=crud&m=manage&t=privacy&a=edit&id=1
which I didn't expect. I'm not sure how else to change the links in order to have them with only 1 question mark and no extra slashes. Not sure how the slash gets put in.
Thanks again for looking.