Really make it call the method with the query interface

cpu-performance
Diva Canto 2013-07-02 15:47:02 -07:00
parent 626940ceb8
commit 2c05caec7f
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ namespace OpenSim.Data.MySQL
public GridUserData[] GetAll(string userID)
{
return base.Get("UserID LIKE {0}%", userID);
return base.Get(String.Format("UserID LIKE {0}%", userID));
}
}
}