]> git.p6c8.net - jirafeau_mojo42.git/blobdiff - lib/functions.php
fix wrong location for cfg access
[jirafeau_mojo42.git] / lib / functions.php
index cfb27033d84dc8cda4a26b11a34f472937d7c35b..f2a26e0858857031be5217987895c239463247fe 100644 (file)
@@ -101,6 +101,19 @@ function jirafeau_gen_random($l)
     return $code;
 }
 
     return $code;
 }
 
+function jirafeau_gen_download_pass($length, $allowed_chars)
+{
+    if ($length <= 0) {
+        return false;
+    }
+    $pass="";
+    for ($i = 0; $i < $length; $i++) {
+        $pass .= $allowed_chars[rand(0, strlen($allowed_chars) - 1)];
+    }
+
+    return $pass;
+}
+
 function is_ssl()
 {
     if (isset($_SERVER['HTTPS'])) {
 function is_ssl()
 {
     if (isset($_SERVER['HTTPS'])) {

patrick-canterino.de