1 Star 0 Fork 5

Mihok/ecshop大商创商城

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
merchants_steps_site.php 675 Bytes
一键复制 编辑 原始数据 按行查看 历史
baobeihuaidan 提交于 2017-10-24 10:04 . 初始化
<?php
//源码由旺旺:ecshop2012所有 未经允许禁止倒卖 一经发现停止任何服务
define('IN_ECS', true);
require dirname(__FILE__) . '/includes/init.php';
if ((DEBUG_MODE & 2) != 2) {
$smarty->caching = true;
}
$user_id = $_SESSION['user_id'];
if ($user_id <= 0) {
show_message($_LANG['steps_UserLogin'], $_LANG['UserLogin'], 'user.php');
exit();
}
$sql = 'select steps_site from ' . $ecs->table('merchants_steps_fields') . ' where user_id = \'' . $user_id . '\'';
$steps_site = $db->getOne($sql);
if (empty($steps_site)) {
$steps_site = 'merchants_steps.php';
}
ecs_header('Location: ' . $steps_site . "\n");
exit();
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/Mihok/www.sc.com.git
git@gitee.com:Mihok/www.sc.com.git
Mihok
www.sc.com
ecshop大商创商城
master

搜索帮助