rename lib to lib-php

This commit is contained in:
Sarah Hoffmann
2021-02-09 11:52:07 +01:00
parent 248b4cddab
commit db3ced17bb
68 changed files with 9 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
<?php
$error = array(
'code' => $exception->getCode(),
'message' => $exception->getMessage()
);
if (CONST_Debug) {
$error['details'] = $exception->getFile() . '('. $exception->getLine() . ')';
}
echo javascript_renderData(array('error' => $error));