[AppDB] Fix case of appName in admin/editAppFamily.php

Tony Lambregts tony_lambregts at telusplanet.net
Wed Jan 19 12:19:40 CST 2005


The notify for editing an app family was always indicating that the name was 
changed since it thought the old name was blank. This patch fixes it.

Change log: Fix case of appName in admin/editAppFamily.php

Files changed: admin/editAppFamily.php
-------------- next part --------------
Index: admin/editAppFamily.php
===================================================================
RCS file: /home/wine/appdb/admin/editAppFamily.php,v
retrieving revision 1.16
diff -u -r1.16 editAppFamily.php
--- admin/editAppFamily.php	19 Jan 2005 04:58:12 -0000	1.16
+++ admin/editAppFamily.php	19 Jan 2005 18:12:44 -0000
@@ -32,7 +32,7 @@
         $sQuery = "SELECT * FROM appFamily WHERE appId = ".$_REQUEST['appId'];
         $hResult = query_appdb($sQuery);
         $ob = mysql_fetch_object($hResult);
-        $sOld_appName     = $ob->AppName;
+        $sOld_appName     = $ob->appName;
         $sOld_description = $ob->description;
         $iOld_vendorId    = $ob->vendorId;
         $iOld_catId       = $ob->catId;


More information about the wine-patches mailing list