source:
branches/rsr.v5.1.1/web/install/app/01_utils.php
@
6
Last change on this file since 6 was 4, checked in by dj3c1t, 13 years ago | |
---|---|
File size: 404 bytes |
Line | |
---|---|
1 | <?php |
2 | |
3 | function _redirect($env, $url, $message, $wait = 1) |
4 | { $env->e = "redirect"; |
5 | $env->out["redirect"] = array(); |
6 | $env->out["redirect"]["url"] = $url; |
7 | $env->out["redirect"]["message"] = $message; |
8 | $env->out["redirect"]["wait"] = $wait; |
9 | } |
10 | |
11 | function debug($TAB) |
12 | { echo "<pre class=\"debug\">\n".htmlentities(print_r($TAB, true))."</pre>\n"; |
13 | } |
14 | |
15 | function error($message) {} |
16 | |
17 | ?> |
Note: See TracBrowser
for help on using the repository browser.