summaryrefslogtreecommitdiff
path: root/includes/crypt.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/crypt.php')
-rw-r--r--[-rwxr-xr-x]includes/crypt.php24
1 files changed, 9 insertions, 15 deletions
diff --git a/includes/crypt.php b/includes/crypt.php
index 9707e719..d511e4f4 100755..100644
--- a/includes/crypt.php
+++ b/includes/crypt.php
@@ -1,18 +1,12 @@
<?php
-
-
-function PassCrypt($passwort) {
-include "config.php";
-
-switch ($crypt_system) {
- case "crypt":
- return "{crypt}".crypt($passwort, "77");
- case "md5":
- return md5($passwort);
+ function PassCrypt($passwort) {
+ include "config.php";
+
+ switch ($crypt_system) {
+ case "crypt":
+ return "{crypt}" . crypt($passwort, "77");
+ case "md5":
+ return md5($passwort);
+ }
}
-
-}
-
-
-
?>