* Bring manage app up to date with current Helma.

This commit is contained in:
hns 2005-08-31 13:16:21 +00:00
parent c632c8f8bd
commit 437dfb94d3
33 changed files with 1185 additions and 1152 deletions

View file

@ -2,10 +2,10 @@
* macro rendering a skin
* @param name name of skin
*/
function skin_macro(par) {
if ( par && par.name ) {
renderSkin(par.name);
}
function skin_macro(par) {
if (par && par.name) {
renderSkin(par.name);
}
}
@ -13,6 +13,6 @@ function skin_macro(par) {
* Macro returning the actual date and time.
*/
function now_macro() {
var date = new Date();
return(date.format("dd.MM.yyyy, HH:mm'h' zzz"));
var date = new Date();
return(date.format("dd.MM.yyyy, HH:mm'h' zzz"));
}