Fix erroneous SQL queries (ignored pre-PHP 8)
							parent
							
								
									463ab4abe0
								
							
						
					
					
						commit
						b400f0c4e5
					
				|  | @ -5,8 +5,13 @@ | |||
| 		{ | ||||
| 			global $RUNTIME; | ||||
| 
 | ||||
| 			$nameParts = explode(" ", trim($name)); | ||||
| 			if(count($nameParts) != 2) { | ||||
| 				return false; | ||||
| 			} | ||||
| 
 | ||||
| 			$statementUser = $RUNTIME['PDO']->prepare("SELECT PrincipalID FROM UserAccounts WHERE FirstName = ? AND LastName = ? LIMIT 1"); | ||||
| 			$statementUser->execute(explode(" ", trim($name)));  | ||||
| 			$statementUser->execute($nameParts);  | ||||
| 
 | ||||
| 			while($rowUser = $statementUser->fetch())  | ||||
| 			{ | ||||
|  | @ -42,7 +47,7 @@ | |||
| 			} | ||||
| 
 | ||||
| 			$statementGridUser = $RUNTIME['PDO']->prepare("SELECT UserID FROM GridUser"); | ||||
| 			$statementGridUser->execute(array($userID)); | ||||
| 			$statementGridUser->execute(); | ||||
| 
 | ||||
| 			while($rowGridUser = $statementGridUser->fetch())  | ||||
| 			{ | ||||
|  | @ -61,7 +66,7 @@ | |||
| 			} | ||||
| 
 | ||||
| 			$statementFriends = $RUNTIME['PDO']->prepare("SELECT PrincipalID FROM Friends"); | ||||
| 			$statementFriends->execute(array($userID)); | ||||
| 			$statementFriends->execute(); | ||||
| 
 | ||||
| 			while($rowFriends = $statementFriends->fetch())  | ||||
| 			{ | ||||
|  |  | |||
|  | @ -65,7 +65,7 @@ | |||
| 
 | ||||
|     $showAll = isset($_SESSION['LEVEL']) && $_SESSION['LEVEL'] >= 100 && isset($_REQUEST['SHOWALL']) && $_REQUEST['SHOWALL'] == "1"; | ||||
|     $statement = $RUNTIME['PDO']->prepare("SELECT uuid,regionName,owner_uuid,locX,locY FROM regions ".($showAll ? "ORDER BY owner_uuid ASC" : "WHERE owner_uuid = ? ORDER BY uuid ASC")); | ||||
|     $statement->execute(array($_SESSION['UUID']));  | ||||
|     $statement->execute($showAll ? array() : array($_SESSION['UUID']));  | ||||
| 
 | ||||
|     include 'app/OpenSim.php'; | ||||
|     $opensim = new OpenSim(); | ||||
|  |  | |||
|  | @ -108,8 +108,8 @@ | |||
| 		$statementAccounts = $RUNTIME['PDO']->prepare('INSERT INTO `UserAccounts` (`PrincipalID`, `ScopeID`, `FirstName`, `LastName`, `Email`, `ServiceURLs`, `Created`, `UserLevel`, `UserFlags`, `UserTitle`, `active`) VALUES (:PrincipalID, :ScopeID, :FirstName, :LastName, :Email, :ServiceURLs, :Created, :UserLevel, :UserFlags, :UserTitle, :active )');  | ||||
| 		$statementAccounts->execute(['PrincipalID' => $avatarUUID, 'ScopeID' => "00000000-0000-0000-0000-000000000000", 'FirstName' => $nameParts[0], 'LastName' => $nameParts[1], 'Email' => $email, 'ServiceURLs' => "HomeURI= GatekeeperURI= InventoryServerURI= AssetServerURI= ", 'Created' => time(), 'UserLevel' => 0, 'UserFlags' => 0, 'UserTitle' => "", 'active' => 1]); | ||||
| 
 | ||||
| 		$statementProfile = $RUNTIME['PDO']->prepare('INSERT INTO `userprofile` (`useruuid`, `profilePartner`, `profileImage`, `profileFirstImage`) VALUES (:useruuid, :profilePartner, :profileImage, :profileFirstImage)');  | ||||
| 		$statementProfile->execute(['useruuid' => $avatarUUID, 'profilePartner' => "00000000-0000-0000-0000-000000000000", 'profileImage' => "00000000-0000-0000-0000-000000000000", 'profileFirstImage' => "00000000-0000-0000-0000-000000000000"]); | ||||
| 		$statementProfile = $RUNTIME['PDO']->prepare('INSERT INTO `userprofile` (`useruuid`, `profilePartner`, `profileImage`, `profileURL`, `profileFirstImage`, `profileAllowPublish`, `profileMaturePublish`, `profileWantToMask`, `profileWantToText`, `profileSkillsMask`, `profileSkillsText`, `profileLanguages`, `profileAboutText`, `profileFirstText`) VALUES (:useruuid, :profilePartner, :profileImage, :profileURL, :profileFirstImage, :profileAllowPublish, :profileMaturePublish, :profileWantToMask, :profileWantToText, :profileSkillsMask, :profileSkillsText, :profileLanguages, :profileAboutText, :profileFirstText)');  | ||||
| 		$statementProfile->execute(['useruuid' => $avatarUUID, 'profilePartner' => "00000000-0000-0000-0000-000000000000", 'profileImage' => "00000000-0000-0000-0000-000000000000", 'profileURL' => '', 'profileFirstImage' => "00000000-0000-0000-0000-000000000000", "profileAllowPublish" => "0", "profileMaturePublish" => "0", "profileWantToMask" => "0", "profileWantToText" => "", "profileSkillsMask" => "0", "profileSkillsText" => "", "profileLanguages" => "", "profileAboutText" => "", "profileFirstText" => ""]); | ||||
| 
 | ||||
| 		$statementInventoryFolder = $RUNTIME['PDO']->prepare('INSERT INTO `inventoryfolders` (`folderName`, `type`, `version`, `folderID`, `agentID`, `parentFolderID`) VALUES (:folderName, :folderTyp, :folderVersion, :folderID, :agentID, :parentFolderID)');  | ||||
| 		$Inventory 				= array('Calling Cards' => 2, 'Objects' => 6, 'Landmarks' => 3, 'Clothing' => 5, 'Gestures' => 21, 'Body Parts' => 13, 'Textures' =>  0, 'Scripts' => 10, 'Photo Album' => 15, 'Lost And Found' => 16, 'Trash' => 14, 'Notecards' =>  7, 'My Inventory' =>  8, 'Sounds' =>  1, 'Animations' => 20); | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 Anonymous Contributor
						Anonymous Contributor