Commit 7391c31584e65cf2d74a8a695bc9b7cc843afbe5
1 parent
7a98d027
test
Showing
1 changed file
with
2 additions
and
1 deletions
Show diff stats
app/library/App/Controllers/ProjectController.php
| ... | ... | @@ -25,7 +25,8 @@ class ProjectController extends CrudResourceController { |
| 25 | 25 | |
| 26 | 26 | public function test_get($id) |
| 27 | 27 | { |
| 28 | - return $id; | |
| 28 | + $test = $this->request->getPost('test'); | |
| 29 | + return $id.'//'.$test; | |
| 29 | 30 | $item = $this->getFindData($id); |
| 30 | 31 | return 'breakpoint'; |
| 31 | 32 | if (!$item) { | ... | ... |