| @@ 850-858 (lines=9) @@ | ||
| 847 | $args = new stdClass(); |
|
| 848 | ||
| 849 | // Get the language file of the current site |
|
| 850 | if(!$site_srl) |
|
| 851 | { |
|
| 852 | $site_module_info = Context::get('site_module_info'); |
|
| 853 | $args->site_srl = (int)$site_module_info->site_srl; |
|
| 854 | } |
|
| 855 | else |
|
| 856 | { |
|
| 857 | $args->site_srl = $site_srl; |
|
| 858 | } |
|
| 859 | $output = executeQueryArray('module.getLang', $args); |
|
| 860 | if(!$output->toBool() || !$output->data) return; |
|
| 861 | ||
| @@ 1700-1709 (lines=10) @@ | ||
| 1697 | if($member_info->is_admin == 'Y') return true; |
|
| 1698 | ||
| 1699 | $args = new stdClass(); |
|
| 1700 | if(!isset($site_srl)) |
|
| 1701 | { |
|
| 1702 | $site_module_info = Context::get('site_module_info'); |
|
| 1703 | if(!$site_module_info) return; |
|
| 1704 | $args->site_srl = $site_module_info->site_srl; |
|
| 1705 | } |
|
| 1706 | else |
|
| 1707 | { |
|
| 1708 | $args->site_srl = $site_srl; |
|
| 1709 | } |
|
| 1710 | ||
| 1711 | $args->member_srl = $member_info->member_srl; |
|
| 1712 | $output = executeQuery('module.isSiteAdmin', $args); |
|