diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-06-04 00:41:50 +0000 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-06-04 00:41:50 +0000 |
commit | 3b775891ca1246df051d1f050c6e91e78422d54c (patch) | |
tree | 9555504c46b156c0c763f6ff2d0b04c7aa7d62a3 /tntconfig.cpp | |
parent | 3f29cb7189b78edba3d73af26884313b2ea506c1 (diff) | |
download | vdr-plugin-live-3b775891ca1246df051d1f050c6e91e78422d54c.tar.gz vdr-plugin-live-3b775891ca1246df051d1f050c6e91e78422d54c.tar.bz2 |
- Fixed themed image tag bug in pageelems.event_timer
- Fixed path for common static data.
Diffstat (limited to 'tntconfig.cpp')
-rw-r--r-- | tntconfig.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tntconfig.cpp b/tntconfig.cpp index e417de4..08a037d 100644 --- a/tntconfig.cpp +++ b/tntconfig.cpp @@ -43,7 +43,7 @@ void TntConfig::WriteConfig() // 2. /dist/img/<imgname>.<ext> // 3. <imgname>.<ext> (builtin images) file << "MapUrl ^/themes/([^/]*)/img.*/(.+)\\.(.+) content@ themes/$1/img/$2.$3 image/$3" << endl; - file << "MapUrl ^/themes/([^/]*)/img.*/(.+)\\.(.+) content@ dist/img/$2.$3 image/$3" << endl; + file << "MapUrl ^/themes/([^/]*)/img.*/(.+)\\.(.+) content@ common/img/$2.$3 image/$3" << endl; file << "MapUrl ^/themes/([^/]*)/img.*/(.+)\\.(.+) $2@" << endl; file << "MapUrl ^/css.*/(.+) content@ css/$1 text/css" << endl; |