This commit is contained in:
Namhyeon Go 2019-05-20 18:06:08 +09:00
parent 6998361a48
commit 91aa1af46b
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
*/
if(!check_function_exists("is_email")) {
$inc_file = "./vendor/isemail/is_email.php";
$inc_file = "./vendor/_dist/isemail/is_email.php";
if(file_exists($inc_file)) {
include($inc_file);
}

View File

@ -25,7 +25,7 @@ if(!check_function_exists("jCryption_get")) {
function jCryption_get($idx=0, $selector="") {
$s = array();
$s[] = "JCryption::decrypt();";
$s[] = sprintf("$(function(){$(\"%s\").jCryption(); });", $selector);
$s[] = sprintf("$(function(){$(\"%s\").jCryption();});", $selector);
$s[] = sprintf("%s/vendor/_dist/jCryption/js/jquery.jcryption.3.1.0.js", base_url());
return $s[$idx];
}