This commit is contained in:
flash 2015-07-25 19:54:40 +02:00
parent 0abc8ee500
commit 2f642f7f85
2 changed files with 17 additions and 3 deletions

View file

@ -33,7 +33,8 @@
"20150704",
"20150705",
"20150706",
"20150707"
"20150707",
"20150725"
]
@ -1507,6 +1508,19 @@
"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."
}
]
}

View file

@ -83,7 +83,7 @@ class Configuration {
} 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 {
// 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);
}