Skip to content
This repository has been archived by the owner on Jan 6, 2020. It is now read-only.

Commit

Permalink
* move user.css in root directory
Browse files Browse the repository at this point in the history
  • Loading branch information
SSilence committed Apr 2, 2013
1 parent e960a6e commit d2c4ba0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/data/logs/*.log
/data/sqlite/*.db
/public/all.*
/public/css/user.css
user.css
/_bin/*.*
/_docs/website/forum
config.ini
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Version 2.5
* new navigation with right/left cursor (thanks a lot to jicho)
* replace • for IE compatibility
* fix re-initialize entry events on screen width change (thanks a lot to Sean Rand)
* allow optional userdefined public/css/user.css (thanks a lot to Jean Baptiste Favre)
* allow optional userdefined user.css (thanks a lot to Jean Baptiste Favre)
* some smaller css tweaks (thanks a lot to Sean Rand)

Version 2.4
Expand Down
4 changes: 2 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
'public/css/fonts.css',
'public/css/style.css'
);
if(file_exists("public/css/user.css"))
$css[] = "public/css/user.css";
if(file_exists("user.css"))
$css[] = "user.css";
$f3->set('css', $css);


Expand Down

0 comments on commit d2c4ba0

Please sign in to comment.