From d831939a07542743dab4d2524744394519e6f6d2 Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Mon, 10 Jul 2006 23:02:03 +0000 Subject: [PATCH] Fix case of sWebpage to let updating of application class information correctly update the applications web page. --- include/application.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/application.php b/include/application.php index cc5685f..99c8468 100644 --- a/include/application.php +++ b/include/application.php @@ -155,7 +155,7 @@ class Application { if ($this->sWebpage && ($this->sWebpage!=$oApp->sWebpage)) { if (!query_parameters("UPDATE appFamily SET webPage = '?' WHERE appId = '?'", - $this->sWebPage, $this->iAppId)) + $this->sWebpage, $this->iAppId)) return false; $sWhatChanged .= "Web page was changed from ".$oApp->sWebpage." to ".$this->sWebpage.".\n\n"; }