Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
UserAdminV2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
庄欣
UserAdminV2
Commits
ce20d7b9
Commit
ce20d7b9
authored
Jul 18, 2011
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove special handling for error views. No longer needed.
parent
c54173bc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
19 deletions
+1
-19
system/error.php
+1
-19
No files found.
system/error.php
View file @
ce20d7b9
...
@@ -38,8 +38,6 @@ class Error {
...
@@ -38,8 +38,6 @@ class Error {
$severity
=
(
array_key_exists
(
$e
->
getCode
(),
static
::
$levels
))
?
static
::
$levels
[
$e
->
getCode
()]
:
$e
->
getCode
();
$severity
=
(
array_key_exists
(
$e
->
getCode
(),
static
::
$levels
))
?
static
::
$levels
[
$e
->
getCode
()]
:
$e
->
getCode
();
$file
=
static
::
file
(
$e
);
$message
=
rtrim
(
$e
->
getMessage
(),
'.'
);
$message
=
rtrim
(
$e
->
getMessage
(),
'.'
);
if
(
Config
::
get
(
'error.log'
))
if
(
Config
::
get
(
'error.log'
))
...
@@ -47,28 +45,12 @@ class Error {
...
@@ -47,28 +45,12 @@ class Error {
call_user_func
(
Config
::
get
(
'error.logger'
),
$severity
,
$message
.
' in '
.
$e
->
getFile
()
.
' on line '
.
$e
->
getLine
());
call_user_func
(
Config
::
get
(
'error.logger'
),
$severity
,
$message
.
' in '
.
$e
->
getFile
()
.
' on line '
.
$e
->
getLine
());
}
}
static
::
show
(
$e
,
$severity
,
$message
,
$
file
);
static
::
show
(
$e
,
$severity
,
$message
,
$
e
->
getFile
()
);
exit
(
1
);
exit
(
1
);
}
}
/**
/**
* Get the path to the file in which an exception occured.
*
* @param Exception $e
* @return string
*/
private
static
function
file
(
$e
)
{
if
(
strpos
(
$e
->
getFile
(),
'view.php'
)
!==
false
and
strpos
(
$e
->
getFile
(),
"eval()'d code"
)
!==
false
)
{
return
APP_PATH
.
'views/'
.
View
::
$last
.
EXT
;
}
return
$e
->
getFile
();
}
/**
* Show the error view.
* Show the error view.
*
*
* @param Exception $e
* @param Exception $e
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment