Actions
Bug #1340
closedcancel button on profile update page when clicked is double htmlspecial the itemid
Description
Itemid for the cancel button URL is having htmlspecial applied to it due to cbSef function before redirecting while inside of JS. This is causing it to output inside the browser as htmlspecial rather then translated.
In: components/com_comprofiler/comprofiler.html.php
On: 307
From:
window.location='id == $_CB_framework->myId() ) ? '' : ( '&user=' . $user->id ) ) . getCBprofileItemid( true ) ); ?>';
To:
window.location='id == $_CB_framework->myId() ) ? '' : ( '&user=' . $user->id ) ) . getCBprofileItemid(), false ); ?>';
http://www.joomlapolis.com/component/option,com_joomlaboard/Itemid,38/func,view/id,118151/catid,100/
Actions