21 lines
389 B
PHP
Executable File
21 lines
389 B
PHP
Executable File
<?php
|
|
/**
|
|
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
|
* This is NOT a freeware, use is subject to license terms
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
if(!defined('IN_DISCUZ')) {
|
|
exit('Access Denied');
|
|
}
|
|
|
|
class helper_invite {
|
|
|
|
public static function generate_key($uid) {
|
|
global $_G;
|
|
$user = C::t('common_member')->fetch($uid);
|
|
return substr(md5(md5($user['password']).'|'.$uid), 8, 16);
|
|
}
|
|
|
|
} |