diff options
author | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-07 18:49:02 +0000 |
---|---|---|
committer | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-07 18:49:02 +0000 |
commit | 416d738788c76d516dfc5884fafebafc157fd4cb (patch) | |
tree | a35e5ed31333d2a790ff81b95d489578bace6091 /pages/page_exit.eh | |
parent | ab7a2112f96bb48ee2713ada4c9ce73322cf3cba (diff) | |
download | vdr-plugin-live-416d738788c76d516dfc5884fafebafc157fd4cb.tar.gz vdr-plugin-live-416d738788c76d516dfc5884fafebafc157fd4cb.tar.bz2 |
- renamed page_init.ecpp and page_exit.ecpp to *.eh
Diffstat (limited to 'pages/page_exit.eh')
-rw-r--r-- | pages/page_exit.eh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pages/page_exit.eh b/pages/page_exit.eh new file mode 100644 index 0000000..94c46ed --- /dev/null +++ b/pages/page_exit.eh @@ -0,0 +1,10 @@ +<# do not add to Makefile #> +<%cpp> + spoint.commit(); +} catch ( HtmlError const& ex ) { + cxxtools::QueryParams param = qparam; + param.add( "pageTitle", pageTitle ); + param.add( "errorMessage", ex.what() ); + callComp( "error", request, reply, param ); +} +</%cpp> |