diff options
author | alecpl <alec@alec.pl> | 2011-04-25 09:54:35 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-04-25 09:54:35 +0000 |
commit | 926948e77fb4d400674fd654e8d7ea900b84fddb (patch) | |
tree | e72360f624acd1879cf54fe0d38bc2b1c5056e57 /program/include/rcmail.php | |
parent | 0761e2b1f7272077fe8bad6e343f45f5d940478c (diff) |
- Use shortest include path for better performance
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r-- | program/include/rcmail.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php index 9eb11e6c5..0e2928f0d 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -1179,7 +1179,7 @@ class rcmail mcrypt_module_close($td); } else { - @include_once('lib/des.inc'); + @include_once 'des.inc'; if (function_exists('des')) { $des_iv_size = 8; @@ -1231,7 +1231,7 @@ class rcmail mcrypt_module_close($td); } else { - @include_once('lib/des.inc'); + @include_once 'des.inc'; if (function_exists('des')) { $des_iv_size = 8; |