|
Revision 454, 195 bytes
(checked in by sven, 2 years ago)
|
removed some addslashes. replaced some with adodb qstr().
removed some stripslashes. a lot more still want to go, depending on how much we care about showing users even more inappropriate backslashes than currently.
fixed a few more php notices.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
if (isset($parameter) && $parameter != "") |
|---|
| 5 |
{ |
|---|
| 6 |
$user_id = $parameter['user_id']; |
|---|
| 7 |
|
|---|
| 8 |
$user = new User($user_id); |
|---|
| 9 |
} |
|---|
| 10 |
|
|---|
| 11 |
$run_result = $user; |
|---|
| 12 |
?> |
|---|
| 13 |
|
|---|