mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Maximum Execution Time Exceeded show error (#11720)
* Maximum Execution Time Exceeded show error Migrate translations to php translation files. Fix invalid view class in Handler * Update MaximumExecutionTimeExceeded.php * Update MaximumExecutionTimeExceeded.php
This commit is contained in:
@@ -67,8 +67,8 @@ class UnserializableRouteCache extends \Exception implements UpgradeableExceptio
|
||||
*/
|
||||
public function render(\Illuminate\Http\Request $request)
|
||||
{
|
||||
$title = __('Error caused by PHP version mismatch');
|
||||
$message = __('The version of PHP your webserver is running (:web_version) does not match the CLI version (:cli_version).', ['cli_version' => $this->cli_php_version, 'web_version' => $this->web_php_version]);
|
||||
$title = trans('exceptions.unserializable_route_cache.title');
|
||||
$message = trans('exceptions.unserializable_route_cache.message', ['cli_version' => $this->cli_php_version, 'web_version' => $this->web_php_version]);
|
||||
|
||||
return $request->wantsJson() ? response()->json([
|
||||
'status' => 'error',
|
||||
|
Reference in New Issue
Block a user