summaryrefslogtreecommitdiff
path: root/includes/common.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/common.inc')
-rw-r--r--includes/common.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/common.inc b/includes/common.inc
index 70c2f9024..b6b315b6e 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -228,7 +228,7 @@ function drupal_get_profile() {
$profile = $install_state['parameters']['profile'];
}
else {
- $profile = variable_get('install_profile', 'default');
+ $profile = variable_get('install_profile', 'standard');
}
return $profile;
@@ -4381,7 +4381,7 @@ function drupal_json_encode($var) {
* Converts an HTML-safe JSON string into its PHP equivalent.
*
* @see drupal_json_encode()
- * @ingroup php_wrappers
+ * @ingroup php_wrappers
*/
function drupal_json_decode($var) {
// json_decode() does not unescape <, > and &, so we do it with str_replace().