- removed explicit writing of prefix and suffix to response-object (helma's doing that from now on)
9 lines
176 B
JavaScript
9 lines
176 B
JavaScript
/**
|
|
* macro writes storylist to response-object
|
|
* kept for backwards-compatibility only
|
|
*/
|
|
|
|
function storylist_macro(param) {
|
|
res.write(res.data.storylist);
|
|
return;
|
|
}
|