Fix 'Hello World' app to work with modern app API. Thanks EthanG for pointing this out.

This commit is contained in:
Uriel 2010-06-06 18:06:21 +00:00
parent 31bd20251d
commit 4b37658071

View file

@ -1,6 +1,6 @@
fn hello_init { fn hello_init {
if(~ $req_path /hello) { if(~ $req_path /hello) {
app_body_handler = 'hello_body' handler_body_main='hello_body'
pageTitle='Hi title!' pageTitle='Hi title!'
} }
} }