diff options
author | Thierry Vignaud <tv@mandriva.org> | 2009-05-12 18:04:23 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2009-05-12 18:04:23 +0000 |
commit | 5208408dad2c1f90dabba2b83c46e2aa0cdd66e9 (patch) | |
tree | b5f6886c35e3137afdfde7f4d9b2cf89a52e0bf1 | |
parent | bad8ea10b1859bb6c05f963f6bdc9d2ca8486658 (diff) | |
download | mgaonline-5208408dad2c1f90dabba2b83c46e2aa0cdd66e9.tar mgaonline-5208408dad2c1f90dabba2b83c46e2aa0cdd66e9.tar.gz mgaonline-5208408dad2c1f90dabba2b83c46e2aa0cdd66e9.tar.bz2 mgaonline-5208408dad2c1f90dabba2b83c46e2aa0cdd66e9.tar.xz mgaonline-5208408dad2c1f90dabba2b83c46e2aa0cdd66e9.zip |
(get_restricted_authentication) directly exit once media were added or
when pressing 'Cancel' button, thus preventing having to cancel
several time (#48999)
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | mdkapplet-restricted-helper | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,8 @@ - mdkapplet o add 2009.1 restricted media on 2009.1 (#50478) o perform initial check after 3 seconds when using --testing +- mdkapplet-restricted-helper + o prevent having to cancel several time (#48999) Version 2.77 - 17 April 2009, Thierry Vignaud diff --git a/mdkapplet-restricted-helper b/mdkapplet-restricted-helper index b98791b7..13d806de 100755 --- a/mdkapplet-restricted-helper +++ b/mdkapplet-restricted-helper @@ -97,7 +97,7 @@ sub get_restricted_authentication() { goto &get_restricted_authentication; } } else { - 0; + ugtk2::exit(0); } } |