projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
01b3bcb
)
lx-office-erp stylesheet als fallback
author
Sven Schöling
<s.schoeling@linet-services.de>
Mon, 5 Mar 2012 10:32:26 +0000
(11:32 +0100)
committer
Sven Schöling
<s.schoeling@linet-services.de>
Mon, 5 Mar 2012 10:32:26 +0000
(11:32 +0100)
SL/Form.pm
patch
|
blob
|
history
diff --git
a/SL/Form.pm
b/SL/Form.pm
index
7eab5c2
..
810552b
100644
(file)
--- a/
SL/Form.pm
+++ b/
SL/Form.pm
@@
-465,6
+465,8
@@
sub get_stylesheet_for_user {
if (my $user_style = $::myconfig{stylesheet}) {
$user_style =~ s/\.css$//; # nuke trailing .css, this is a remnand of pre 2.7.0 stylesheet handling
$css_path = "$css_path/$user_style" if -d "$css_path/$user_style";
+ } else {
+ $css_path = "$css_path/lx-office-erp";
}
$::myconfig{css_path} = $css_path; # needed for menunew, FIXME: don't do this here