magentait wrote:
Anyone else?
When I turn on the JavaScript console in Firefox, I get this warning:
Error: syntax error
Source File:
http://www.xxxxx.com/administrator/inde ... mainmenu=1Line: 187, Column: 42
Source Code:
if (form.config_session_type.value != ){
This is a bug in:
administrator/components/com_config/admin.config.html.php in line 102:
Code:
function submitbutton(pressbutton) {
var form = document.adminForm;
// do field validation
if (form.config_session_type.value != <?php echo $mosConfig_session_type; ?> ){
if ( confirm('Are you sure you wish to change the `Session Authentication Method`? \n\n This will cause all existing frontend sessions to be deleted \n\n') ) {
submitform( pressbutton );
} else {
change the line:
Code:
if (form.config_session_type.value != <?php echo $mosConfig_session_type; ?> ){
to:
Code:
if (form.config_session_type.value != <?php echo ($mosConfig_session_type ? $mosConfig_session_type : "form.config_session_type.value"); ?> ){
(I'm sure Rey will come with a more optimized fix for svn

)
OR alternatively add into configuration.php the following missing line (it's missing since you took a 1.0.7 configuration.php, surprised why I haven't that problem here

):
Code:
$mosConfig_session_type = 0;
Can a moderator change this topic to [bug] or [confirmed]

?