From b18a91cca7141a7b28ff03d2900efc3fe915caf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Nicolaysen=20S=C3=B8rnes?= Date: Mon, 23 Apr 2007 23:33:47 +0000 Subject: [PATCH] Fix typo in monitor creation preventing the userid value from being saved --- appview.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appview.php b/appview.php index 4c2326d..a73878a 100644 --- a/appview.php +++ b/appview.php @@ -113,7 +113,7 @@ if ($aClean['sSub']) if($aClean['sSub'] == 'StartMonitoring') { $oMonitor = new Monitor(); - $oMonitor->iuserId = $_SESSION['current']->iUserId; + $oMonitor->iUserId = $_SESSION['current']->iUserId; $oMonitor->iAppId = $aClean['iAppId']; $oMonitor->iVersionId = $aClean['iVersionId']; $oMonitor->create();