diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/plugins/admin.php | 4 | ||||
-rw-r--r-- | lib/scripts/tw-sack.js | 2 | ||||
-rw-r--r-- | lib/tpl/default/design.css | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/plugins/admin.php b/lib/plugins/admin.php index 936278d2b..339f465a7 100644 --- a/lib/plugins/admin.php +++ b/lib/plugins/admin.php @@ -78,9 +78,9 @@ class DokuWiki_Admin_Plugin { $file = DOKU_PLUGIN.$plugin.'/lang/'.$conf['lang'].'/'.$id.'.txt'; if(!@file_exists($file)){ //fall back to english - $file = DOKU_PLUGIN.$plugin.'inc/lang/en/'.$id.'.txt'; + $file = DOKU_PLUGIN.$plugin.'/lang/en/'.$id.'.txt'; } - return $file; + return $file; } // use this function to access plugin language strings diff --git a/lib/scripts/tw-sack.js b/lib/scripts/tw-sack.js index 1480ca41c..d608a76b7 100644 --- a/lib/scripts/tw-sack.js +++ b/lib/scripts/tw-sack.js @@ -94,7 +94,6 @@ function sack(file){ } catch (e) {} } - this.xmlhttp.send(this.URLString); this.xmlhttp.onreadystatechange = function() { switch (self.xmlhttp.readyState){ case 1: @@ -126,6 +125,7 @@ function sack(file){ break; } }; + this.xmlhttp.send(this.URLString); } } }; diff --git a/lib/tpl/default/design.css b/lib/tpl/default/design.css index ee03815ff..79a205f7e 100644 --- a/lib/tpl/default/design.css +++ b/lib/tpl/default/design.css @@ -116,7 +116,7 @@ input.missing { /* --------- buttons ------------------- */ -input.button { +input.button, button.button{ border: 1px solid #8cacbb; color: Black; background-color: white; |