partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit f716a31dc9c76c8c823184366527f307f94c24f9
parent c35457be39c534b7ce212068699db3c77f1c5112
Author: Felicitus <felicitus@felicitus.org>
Date:   Sat, 31 Mar 2012 09:47:16 +0200

Fixed missing code tag closure

Diffstat:
Msrc/setup/setup.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/setup/setup.php b/src/setup/setup.php @@ -45,6 +45,6 @@ try { $error["error"] = true; echo json_encode($error); } catch (\Exception $e) { - echo json_encode(array("error" => true, "message" => "An unexpected error occured during installation. The error message was:<br/><code>".$e->getMessage()."</code> and happened in <code>".$e->getFile().":".$e->getLine() )); + echo json_encode(array("error" => true, "message" => "An unexpected error occured during installation. The error message was:<br/><code>".$e->getMessage()."</code> and happened in <code>".$e->getFile().":".$e->getLine()."</code>" )); exit; }