|
...
|
...
|
@@ -53,7 +53,7 @@ class BaseController extends Controller |
|
|
|
*/
|
|
|
|
public function handleIdAndProjectId()
|
|
|
|
{
|
|
|
|
if(isset($this->param['id']) && !empty($this->param['id'])){
|
|
|
|
if(isset($this->param['id']) && !empty($this->param['id']) && !is_array($this->param['id'])){
|
|
|
|
if (preg_match('/^[A-Za-z]/', $this->param['id'])) {
|
|
|
|
$id = Cache::get('project_'.$this->param['id']);
|
|
|
|
if(empty($id)){
|
...
|
...
|
|