ChangeSet ID: 31030 CVSROOT: /opt/cvs-commit Module name: appdb Changes by: wineowner@winehq.org 2007/04/03 19:32:43
Modified files: include : objectManager.php
Log message: Alexander Nicolaysen Sørnes alex@thehandofagony.com Add return value to objectManager::displayErrors(). Return true if errors were found
Patch: http://cvs.winehq.org/patch.py?id=31030
Old revision New revision Changes Path 1.10 1.11 +1 -0 appdb/include/objectManager.php
Index: appdb/include/objectManager.php diff -u -p appdb/include/objectManager.php:1.10 appdb/include/objectManager.php:1.11 --- appdb/include/objectManager.php:1.10 4 Apr 2007 0:32:43 -0000 +++ appdb/include/objectManager.php 4 Apr 2007 0:32:43 -0000 @@ -400,6 +400,7 @@ class ObjectManager echo "The following errors were found<br />\n"; echo "<ul>$sErrors</ul>\n"; echo "</font><br />"; + return TRUE; } else return FALSE; }