summaryrefslogtreecommitdiffabout
path: root/components/exception_dev
Unidiff
Diffstat (limited to 'components/exception_dev') (more/less context) (ignore whitespace changes)
-rw-r--r--components/exception_dev3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/exception_dev b/components/exception_dev
index d62f462..49b7f45 100644
--- a/components/exception_dev
+++ b/components/exception_dev
@@ -24,7 +24,7 @@
24 __SCIF->headers.clear(); 24 __SCIF->headers.clear();
25 __SCIF->out->seekp(0); 25 __SCIF->out->seekp(0);
26 int magic = _magic; 26 int magic = _magic;
27 va_list va = _args; 27 va_list va; va_copy(va,_args);
28 switch(magic) { 28 switch(magic) {
29 case sitecing::__magic_compile_error: 29 case sitecing::__magic_compile_error:
30 message = va_arg(va,const char*); 30 message = va_arg(va,const char*);
@@ -326,6 +326,7 @@
326 try{ 326 try{
327 return sitecing::strip_prefix(np,root_intermediate); 327 return sitecing::strip_prefix(np,root_intermediate);
328 }catch(sitecing::utility_no_prefix& e){ } 328 }catch(sitecing::utility_no_prefix& e){ }
329 return np;
329</%codemethod> 330</%codemethod>
330<%codemethod string remove_roots(const string& str) %> 331<%codemethod string remove_roots(const string& str) %>
331 string rv = str; 332 string rv = str;