2001-07-26
2001-07-26 01:51:45 by Martin Stjernholm <mast@lysator.liu.se>
-
8d925804c288e8cd1f3c9040caf79a03337a0bbb
(7 lines)
(+4/-3)
[
Show
| Annotate
]
Branch: 5.2
Fixed bug which caused a backtrace when help was requested.
Rev: server/etc/modules/RXML.pmod/module.pmod:1.215
2:
//
// Created 1999-07-30 by Martin Stjernholm.
//
- // $Id: module.pmod,v 1.214 2001/07/25 21:02:21 mast Exp $
+ // $Id: module.pmod,v 1.215 2001/07/26 01:51:45 mast Exp $
// Kludge: Must use "RXML.refs" somewhere for the whole module to be
// loaded correctly.
3435: Inside #if defined(MODULE_LEVEL_SECURITY)
if (id->conf->check_security (tag, id, id->misc->seclevel)) {
THIS_TAG_TOP_DEBUG ("Access denied - exiting\n");
TRACE_LEAVE("access denied");
- break process_tag;
+ return result = nil;
}
#endif
}
3520: Inside #if defined(MAGIC_HELP_ARG)
THIS_TAG_TOP_DEBUG ("Reporting help - frame done\n");
ctx->handle_exception ( // Will throw if necessary.
Backtrace ("help", help, ctx), evaler);
- break process_tag;
+ return result = nil;
}
#endif