Merge pull request #3399 from owncloud/fix_js_for_ie

cleanup after people who don't test in ie
This commit is contained in:
Bernhard Posselt 2013-05-19 11:25:39 -07:00
commit 71668cf08a
1 changed files with 3 additions and 3 deletions

View File

@ -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");
}
}