[svn r13877] fix a bug in mp3player autostart

skala
Eric Marguin 18 years ago
parent 914081e866
commit d987ab8343
  1. 4
      main/inc/course_document.inc.php

@ -315,11 +315,11 @@ function OpenFile( fileUrl, type )
ret = confirm('<?php echo get_lang('AutostartMp3') ?>');
if(ret==true)
{
GetE('autostart').checked = 'true';
GetE('autostart').checked = true;
}
else
{
GetE('autostart').checked = 'false';
GetE('autostart').checked = false;
}
}
SetUrl( fileUrl ) ;

Loading…
Cancel
Save