We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7530eb commit 3103bf6Copy full SHA for 3103bf6
.gitignore
@@ -6,10 +6,7 @@
6
*.log
7
/server/cache
8
/server/libs
9
-/ssl/www.swoole.com.key
10
-/ssl/wiki.swoole.com.crt
11
-/ssl/www.swoole.com.crt
12
-/ssl/wiki.swoole.com.key
+/ssl/
13
/composer.lock
14
/web/static/smartadmin/
15
/server/apps/configs/sms.php
server/apps/controllers/Person.php
@@ -456,7 +456,14 @@ function mobile_verify()
456
$user->mobile = $_POST['mobile'];
457
$user->mobile_verification = 1;
458
$user->save();
459
- $this->infoPage('验证通过');
+ if (!empty($_GET['refer']))
460
+ {
461
+ $this->http->redirect($_GET['refer']);
462
+ }
463
+ else
464
465
+ $this->infoPage('验证通过');
466
467
return;
468
}
469
display:
0 commit comments