mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
act가 4자리 미만일 때 오류 수정.
ex) ‘IS’. 통합검색.
This commit is contained in:
parent
a931f6b1ea
commit
708dda07eb
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ class ModuleHandler extends Handler
|
|||
exit;
|
||||
}
|
||||
|
||||
if(isset($this->act) && substr_compare($this->act, 'disp', 0, 4) === 0)
|
||||
if(isset($this->act) && (strlen($this->act) >= 4 && substr_compare($this->act, 'disp', 0, 4) === 0))
|
||||
{
|
||||
if(Context::get('_use_ssl') == 'optional' && Context::isExistsSSLAction($this->act) && $_SERVER['HTTPS'] != 'on')
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue