Really make it call the method with the query interface

This commit is contained in:
Diva Canto
2013-07-02 15:47:02 -07:00
parent 626940ceb8
commit 2c05caec7f

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));
}
}
}