/* * This file is a part of Winix * and is not publicly distributed * * Copyright (c) 2008-2010, Tomasz Sowa * All rights reserved. * */ #include #include "templates.h" #include "core/request.h" namespace TemplatesFunctions { void adduser_last_login(Info & i) { i.out << request->PostVar("login"); } void adduser_last_email(Info & i) { i.out << request->PostVar("email"); } } // namespace