提交 258f67f2 编写于 作者: huangxuan258's avatar huangxuan258

更新qq和微博登录新用户授权自动注册失败bug

上级 7d8da1a8
......@@ -174,6 +174,14 @@ if ($user) {
}
}
function forcemkdir($path) {
if (! file_exists ( $path )) {
forcemkdir ( dirname ( $path ) );
$oldumask = umask ( 0 );
mkdir ( $path, 0777 );
umask ( $oldumask );
}
}
function url($var, $url = '') {
global $setting;
// exit($var);
......
......@@ -231,6 +231,14 @@ if ($token_arr) {
// header ( "Location:" . SITE_URL );
}
}
function forcemkdir($path) {
if (! file_exists ( $path )) {
forcemkdir ( dirname ( $path ) );
$oldumask = umask ( 0 );
mkdir ( $path, 0777 );
umask ( $oldumask );
}
}
function get_remote_image($url, $savepath) {
ob_start ();
readfile ( $url );
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册