mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Move return to end of function.
This commit is contained in:
parent
f6cae80fce
commit
b271dafffb
@ -24,10 +24,12 @@ class DevBuildController extends Controller {
|
||||
echo "<div class=\"build\">";
|
||||
|
||||
$da = DatabaseAdmin::create();
|
||||
return $da->handleRequest($request, $this->model);
|
||||
$response = $da->handleRequest($request, $this->model);
|
||||
|
||||
echo "</div>";
|
||||
$renderer->writeFooter();
|
||||
|
||||
return $response;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user