--- trunk/tntnet/dynamic/adm_customer_edit.ecpp 2007/11/29 07:34:54 93 +++ trunk/tntnet/dynamic/adm_customer_edit.ecpp 2007/11/29 08:04:13 94 @@ -22,19 +22,21 @@ int id; +<{ +if (userName.size() == 0) +{ + reply.setHeader("Location", "index"); + return HTTP_MOVED_TEMPORARILY; +} +}> + + <&header title="Customer Administration"> - <{ -if (userName.size() == 0) -{ - reply.setHeader("Refresh", "0; url=login"); - return HTTP_OK; -} - if (id == -1) reply.out() << "

New Customer

\n"; else @@ -64,8 +66,9 @@ //tntdb::Value v = conn.selectValue("SELECT lastval()"); //get the auto-generated id //id = v.getInt(); - reply.setHeader("Refresh", "0; url=adm_customer_list"); - return HTTP_OK; + + reply.setHeader("Location", "adm_customer_list"); + return HTTP_MOVED_TEMPORARILY; } else {