tabs-to-spaces

This commit is contained in:
Marc Tobias Metten
2016-09-04 03:19:48 +02:00
parent cd6dcfa574
commit 832547f192
55 changed files with 8236 additions and 8232 deletions

View File

@@ -1,4 +1,5 @@
<?php <?php
class PlaceLookup class PlaceLookup
{ {
protected $oDB; protected $oDB;
@@ -358,4 +359,3 @@
return $aOutlineResult; return $aOutlineResult;
} }
} }
?>

View File

@@ -1,4 +1,5 @@
<?php <?php
class ReverseGeocode class ReverseGeocode
{ {
protected $oDB; protected $oDB;
@@ -210,4 +211,3 @@
} }
} }
?>

View File

@@ -1,4 +1,5 @@
<?php <?php
require_once('DB.php'); require_once('DB.php');
function &getDB($bNew = false, $bPersistent = false) function &getDB($bNew = false, $bPersistent = false)

View File

@@ -1,4 +1,5 @@
<?php <?php
require_once('init.php'); require_once('init.php');
require_once('cmd.php'); require_once('cmd.php');

View File

@@ -1,4 +1,5 @@
<?php <?php
require_once('init.php'); require_once('init.php');
require_once('ParameterParser.php'); require_once('ParameterParser.php');
@@ -7,6 +8,7 @@
* Error handling functions * Error handling functions
* *
*/ */
function chksql($oSql, $sMsg = "Database request failed") function chksql($oSql, $sMsg = "Database request failed")
{ {
if (!PEAR::isError($oSql)) return $oSql; if (!PEAR::isError($oSql)) return $oSql;

View File

@@ -1,4 +1,5 @@
<?php <?php
$aFilteredPlaces = array(); $aFilteredPlaces = array();
if (!sizeof($aPlace)) if (!sizeof($aPlace))

View File

@@ -1,4 +1,5 @@
<?php <?php
$aFilteredPlaces = array(); $aFilteredPlaces = array();
if (!sizeof($aPlace)) if (!sizeof($aPlace))

View File

@@ -1,4 +1,5 @@
<?php <?php
$aFilteredPlaces = array(); $aFilteredPlaces = array();
foreach($aSearchResults as $iResNum => $aPointDetails) foreach($aSearchResults as $iResNum => $aPointDetails)
{ {

View File

@@ -102,4 +102,3 @@
// Set to a file name to enable logging to a file. // Set to a file name to enable logging to a file.
@define('CONST_Log_File', false); @define('CONST_Log_File', false);

View File

@@ -1,4 +1,5 @@
<?php <?php
echo "ERROR: Scripts must be run from build directory.\n"; echo "ERROR: Scripts must be run from build directory.\n";
exit; exit;

View File

@@ -50,6 +50,3 @@
{ {
showUsage($aCMDOptions, true); showUsage($aCMDOptions, true);
} }