diff options
| author | Lester Caine <lester@lsces.co.uk> | 2005-11-27 13:18:56 +0000 |
|---|---|---|
| committer | Lester Caine <lester@lsces.co.uk> | 2005-11-27 13:18:56 +0000 |
| commit | 0e5f6c2e4bd33c079b81482d4874b3ccb81f3d32 (patch) | |
| tree | 40a3eaba99e0afb1c91a35700ebfd36a5589248f /templates/center_user_wiki_page.php | |
| parent | 6883b5297f77a06d24cf7b67e5daa671b6a77e08 (diff) | |
| download | users-0e5f6c2e4bd33c079b81482d4874b3ccb81f3d32.tar.gz users-0e5f6c2e4bd33c079b81482d4874b3ccb81f3d32.tar.bz2 users-0e5f6c2e4bd33c079b81482d4874b3ccb81f3d32.zip | |
Pass by reference error - corrected
Diffstat (limited to 'templates/center_user_wiki_page.php')
| -rw-r--r-- | templates/center_user_wiki_page.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/center_user_wiki_page.php b/templates/center_user_wiki_page.php index b4eebea..85d4f44 100644 --- a/templates/center_user_wiki_page.php +++ b/templates/center_user_wiki_page.php @@ -6,6 +6,7 @@ global $wikilib, $user, $gQueryUser; include_once( USERS_PKG_PATH.'lookup_user_inc.php' ); -$gBitSmarty->assign_by_ref( 'parsed', $gQueryUser->parseData() ); +$data = $gQueryUser->parseData(); +$gBitSmarty->assign_by_ref( 'parsed', $data ); ?> |
