[更新]修复微信菜单小程序支持

This commit is contained in:
邹景立 2017-06-16 19:33:32 +08:00 committed by GitHub
parent d454f75129
commit 1f452ab5d5

View File

@ -124,7 +124,7 @@ class Menu extends BasicAdmin {
empty($row['content']) && $row['content'] = uniqid();
switch ($row['type']) {
case 'miniprogram':
list($row['appid'], $row['pagepath'], $row['url']) = explode(',', $row['content'] . ',,');
list($row['appid'], $row['url'], $row['pagepath']) = explode(',', $row['content'] . ',,');
break;
case 'view':
$row['url'] = preg_match('#^(\w+:)?//#i', $row['content']) ? $row['content'] : url($row['content'], '', true, true);