Router 수정
더보기
diff -r -s new/libraries/Router.php old/libraries/Router.php
310c310
< $this->class = str_replace(array('/', '.'), '', $class);
---
> $this->class = $class;
369c369
< $this->directory = str_replace(array('/', '.'), '', $dir).'/';
---
> $this->directory = $dir.'/';
Input 수정??
더보기
diff -r -s new/libraries/Input.php old/libraries/Input.php
137,139c137
< //$_GET = $this->_clean_input_data($_GET);
< //
<
---
> $_GET = $this->_clean_input_data($_GET);
143c141
< $_POST = $this->_clean_input_data($_POST);
---
> //$_POST = $this->_clean_input_data($_POST);