Revision 1099
Added by Matthias over 15 years ago
trunk/CHANGELOG | ||
---|---|---|
11 | 11 |
! = Update/Change |
12 | 12 |
|
13 | 13 |
------------------------------------- 2.8.0 ------------------------------------- |
14 |
28-July 2009 Matthias Gallas |
|
15 |
# fixed some smaller issues in rss.php (Thanks to Kibmcz) |
|
14 | 16 |
27-July 2009 Matthias Gallas |
15 | 17 |
+ Added German language file to droplets |
16 | 18 |
+ Added modul_description to language files of droplets |
trunk/wb/modules/news/rss.php | ||
---|---|---|
67 | 67 |
<?php |
68 | 68 |
// Optional header info |
69 | 69 |
?> |
70 |
<language><?php echo DEFAULT_LANGUAGE; ?></language>
|
|
71 |
<copyright><?php echo WB_URL.$_SERVER['REQUEST_URI']; ?></copyright>
|
|
70 |
<language><?php echo strtolower(DEFAULT_LANGUAGE); ?></language>
|
|
71 |
<copyright><?php $thedate = date('Y'); $websitetitle = WEBSITE_TITLE; echo "Copyright {$thedate}, {$websitetitle}"; ?></copyright>
|
|
72 | 72 |
<managingEditor><?php echo SERVER_EMAIL; ?></managingEditor> |
73 | 73 |
<webMaster><?php echo SERVER_EMAIL; ?></webMaster> |
74 | 74 |
<category><?php echo WEBSITE_TITLE; ?></category> |
Also available in: Unified diff
fixed some smaller issues in rss.php (Thanks to Kibmcz)