From: Jörn Friedrich Dreyer Date: Fri, 17 May 2013 10:47:32 +0000 (+0200) Subject: cleanup after people who don't test in ie X-Git-Tag: v6.0.0alpha2~758^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=800c39fef1d7375314ebc1e4723896b27f946bfa;p=nextcloud-server.git cleanup after people who don't test in ie --- diff --git a/core/js/config.php b/core/js/config.php index 48bea6ae542..53a8fb96388 100644 --- a/core/js/config.php +++ b/core/js/config.php @@ -26,8 +26,8 @@ $array = array( "oc_debug" => (defined('DEBUG') && DEBUG) ? 'true' : 'false', "oc_webroot" => "\"".OC::$WEBROOT."\"", "oc_appswebroots" => str_replace('\\/', '/', json_encode($apps_paths)), // Ugly unescape slashes waiting for better solution - "oc_current_user" => "document.head.getAttribute('data-user')", - "oc_requesttoken" => "document.head.getAttribute('data-requesttoken')", + "oc_current_user" => "document.getElementsByTagName('head')[0].getAttribute('data-user')", + "oc_requesttoken" => "document.getElementsByTagName('head')[0].getAttribute('data-requesttoken')", "datepickerFormatDate" => json_encode($l->l('jsdate', 'jsdate')), "dayNames" => json_encode( array( @@ -62,4 +62,4 @@ $array = array( // Echo it foreach ($array as $setting => $value) { echo("var ". $setting ."=".$value.";\n"); -} \ No newline at end of file +}