Ignore:
Timestamp:
Sep 11, 2013, 6:44:54 PM (11 years ago)
Author:
mistic100
Message:

new system for shares : password protection, link timeout, management popup + for mails
handle lightbox conflicts
menublock is visible by AMM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/UserCollections/include/functions.inc.php

    r23551 r24421  
    2020    return (bool)preg_match($regex, $mail_address);
    2121  }
     22}
     23
     24function get_random_key($length=32)
     25{
     26  $chars = '0123456789abcdefabcdef';
     27  for ($s=''; strlen($s)<$length; )
     28  {
     29    $s.= $chars[rand(0, strlen($chars) - 1)];
     30  }
     31  return $s;
    2232}
    2333
Note: See TracChangeset for help on using the changeset viewer.