changed curly bracks on if, else, foreach to match pear code styles

This commit is contained in:
Brenda Wallace 2009-09-13 17:43:48 +12:00
parent 222ef4d186
commit 711fe39700

View File

@ -203,8 +203,7 @@ $dbModules = array(
function main()
{
if (!checkPrereqs())
{
if (!checkPrereqs()) {
return;
}
@ -221,7 +220,7 @@ function main()
function haveExternalLibrary($external_library)
{
if(isset($external_library['include']) && ! include_once($external_library['include'])){
if (isset($external_library['include']) && ! include_once $external_library['include'] ) {
return false;
}
if (isset($external_library['check_function']) && ! function_exists($external_library['check_function'])) {