Revision 1106
Added by Matthias over 15 years ago
trunk/CHANGELOG | ||
---|---|---|
12 | 12 |
|
13 | 13 |
------------------------------------- 2.8.0 ------------------------------------- |
14 | 14 |
6-Aug-2009 Matthias Gallas |
15 |
+ Added new function 'register_frontend_modfiles_body' to default templates |
|
15 | 16 |
+ Added option to use a frontend_body.js in modules to include javascript from modules |
16 | 17 |
in the body of the frontend (Thanks to Luisehahne) |
17 | 18 |
! Updated Danish language Files (Thanks to Achrist) |
trunk/wb/templates/allcss/index.php | ||
---|---|---|
141 | 141 |
<div class="powered_by"> |
142 | 142 |
Powered by <a href="http://www.websitebaker.org" target="_blank">Website Baker</a> |
143 | 143 |
</div> |
144 |
|
|
144 |
<?php |
|
145 |
// automatically include optional WB module file frontend_body.js) |
|
146 |
if (function_exists('register_frontend_modfiles_body')) { register_frontend_modfiles_body(); } |
|
147 |
?> |
|
145 | 148 |
</body> |
146 | 149 |
</html> |
trunk/wb/templates/round/index.php | ||
---|---|---|
244 | 244 |
</td> |
245 | 245 |
</tr> |
246 | 246 |
</table> |
247 |
|
|
247 |
<?php |
|
248 |
// automatically include optional WB module file frontend_body.js) |
|
249 |
if (function_exists('register_frontend_modfiles_body')) { register_frontend_modfiles_body(); } |
|
250 |
?> |
|
248 | 251 |
</body> |
249 | 252 |
</html> |
trunk/wb/templates/simple/index.php | ||
---|---|---|
100 | 100 |
</td> |
101 | 101 |
</tr> |
102 | 102 |
</table> |
103 |
|
|
103 |
<?php |
|
104 |
// automatically include optional WB module file frontend_body.js) |
|
105 |
if (function_exists('register_frontend_modfiles_body')) { register_frontend_modfiles_body(); } |
|
106 |
?> |
|
104 | 107 |
</body> |
105 | 108 |
</html> |
Also available in: Unified diff
Added new function 'register_frontend_modfiles_body' to default templates