equal
deleted
inserted
replaced
439 object.filter = "alpha(opacity=" + opacity + ")"; |
439 object.filter = "alpha(opacity=" + opacity + ")"; |
440 } |
440 } |
441 |
441 |
442 function mb_logout() |
442 function mb_logout() |
443 { |
443 { |
444 var mb = new messagebox(MB_YESNO|MB_ICONQUESTION, 'Are you sure you want to log out?', 'If you log out, you will no longer be able to access your user preferences, your private messages, or certain areas of this site until you log in again.'); |
444 var mb = new messagebox(MB_YESNO|MB_ICONQUESTION, $lang.get('user_logout_confirm_title'), $lang.get('user_logout_confirm_body')); |
445 mb.onclick['Yes'] = function() |
445 mb.onclick['Yes'] = function() |
446 { |
446 { |
447 window.location = makeUrlNS('Special', 'Logout/' + title); |
447 window.location = makeUrlNS('Special', 'Logout/' + title); |
448 } |
448 } |
449 } |
449 } |