OOPS
This commit is contained in:
parent
0abc8ee500
commit
2f642f7f85
2 changed files with 17 additions and 3 deletions
|
@ -33,7 +33,8 @@
|
||||||
"20150704",
|
"20150704",
|
||||||
"20150705",
|
"20150705",
|
||||||
"20150706",
|
"20150706",
|
||||||
"20150707"
|
"20150707",
|
||||||
|
"20150725"
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -1507,6 +1508,19 @@
|
||||||
"change": "Added post and topic count variable to the profile."
|
"change": "Added post and topic count variable to the profile."
|
||||||
}
|
}
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
|
"20150725": [
|
||||||
|
|
||||||
|
{
|
||||||
|
"type": "ADD",
|
||||||
|
"change": "Added stuff for Disqus SSO."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "FIX",
|
||||||
|
"change": "Make the error in getConfig return the value that can't be found."
|
||||||
|
}
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -83,7 +83,7 @@ class Configuration {
|
||||||
|
|
||||||
} else {// If it doesn't exist trigger an error to avoid explosions
|
} else {// If it doesn't exist trigger an error to avoid explosions
|
||||||
|
|
||||||
trigger_error('Unable to get local configuration value!', E_USER_ERROR);
|
trigger_error('Unable to get local configuration value "'. $key .'"', E_USER_ERROR);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -126,7 +126,7 @@ class Configuration {
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
// Then return the value
|
// Then return the value
|
||||||
trigger_error('Unable to get configuration value', E_USER_ERROR);
|
trigger_error('Unable to get configuration value "'. $key .'"', E_USER_ERROR);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue