fixed problem with crypto libraries no longer existing

This commit is contained in:
Ulf Gebhardt 2016-06-23 21:25:30 +02:00
parent 54aaf1a1d2
commit 3190217b97
2 changed files with 1 additions and 5 deletions

View File

@ -89,8 +89,6 @@ class saimod_sys_login extends \SYSTEM\SAI\SaiModule {
*/
public static function js(){
return array( \LIB\lib_jqbootstrapvalidation::js(),
new \SYSTEM\PSAI('modules/saimod_sys_login/js/sai_sys_login_submit.js'),
new \SYSTEM\PSAI('js/crypto/jquery.md5.js'),
new \SYSTEM\PSAI('js/crypto/jquery.sha1.js'));
new \SYSTEM\PSAI('modules/saimod_sys_login/js/sai_sys_login_submit.js'));
}
}

View File

@ -86,8 +86,6 @@ class saistart_sys_sai extends \SYSTEM\SAI\SaiModule {
*/
public static function js(){
return array( new \SYSTEM\PSAI('modules/saistart_sys_sai/js/saistart_sys_sai.js'),
new \SYSTEM\PSAI('js/crypto/jquery.md5.js'),
new \SYSTEM\PSAI('js/crypto/jquery.sha1.js'),
\LIB\lib_jqbootstrapvalidation::js());
}
}