Fix case of sWebpage to let updating of application class information correctly update the applications web page.

This commit is contained in:
Chris Morgan
2006-07-10 23:02:03 +00:00
committed by WineHQ
parent 219b5ac09c
commit d831939a07

View File

@@ -155,7 +155,7 @@ class Application {
if ($this->sWebpage && ($this->sWebpage!=$oApp->sWebpage)) if ($this->sWebpage && ($this->sWebpage!=$oApp->sWebpage))
{ {
if (!query_parameters("UPDATE appFamily SET webPage = '?' WHERE appId = '?'", if (!query_parameters("UPDATE appFamily SET webPage = '?' WHERE appId = '?'",
$this->sWebPage, $this->iAppId)) $this->sWebpage, $this->iAppId))
return false; return false;
$sWhatChanged .= "Web page was changed from ".$oApp->sWebpage." to ".$this->sWebpage.".\n\n"; $sWhatChanged .= "Web page was changed from ".$oApp->sWebpage." to ".$this->sWebpage.".\n\n";
} }