Apply .gitignore
This commit is contained in:
parent
2e4193fa32
commit
21055497b0
11
.gitignore
vendored
11
.gitignore
vendored
@ -1,11 +1,10 @@
|
|||||||
#codeigniter4
|
#codeigniter4
|
||||||
composer.lock
|
public/mapurl/
|
||||||
/vendor/
|
|
||||||
public/vendors/
|
|
||||||
public/tinymce_uploads
|
|
||||||
.env
|
.env
|
||||||
google_client_secret.json
|
composer.lock
|
||||||
|
vendor/
|
||||||
|
public/vendors/
|
||||||
|
public/tinymce_uploads/
|
||||||
writable/caceh/*
|
writable/caceh/*
|
||||||
!writable/caceh/index.html
|
!writable/caceh/index.html
|
||||||
writable/logs/*
|
writable/logs/*
|
||||||
|
|||||||
@ -337,7 +337,7 @@ abstract class MVController extends CommonController
|
|||||||
}
|
}
|
||||||
$this->getModel()->limit($this->per_page, $this->page * $this->per_page - $this->per_page);
|
$this->getModel()->limit($this->per_page, $this->page * $this->per_page - $this->per_page);
|
||||||
$entitys = $this->getModel()->select($this->getModel()->getTable() . '.*')->findAll();
|
$entitys = $this->getModel()->select($this->getModel()->getTable() . '.*')->findAll();
|
||||||
// log_message("debug", $this->getModel()->getLastQuery());
|
log_message("debug", $this->getModel()->getLastQuery());
|
||||||
return $entitys;
|
return $entitys;
|
||||||
}
|
}
|
||||||
final protected function list_procedure(): string
|
final protected function list_procedure(): string
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
11
writable/debugbar/index.html
Normal file
11
writable/debugbar/index.html
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>403 Forbidden</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<p>Directory access is forbidden.</p>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Reference in New Issue
Block a user