|
Keyword is not Case Sensitive bug - SOLVED 1 Year, 2 Months ago
|
|
|
Hi all, I needed this script because it plugs into nbill. But I had a terrible time with .ca domains, turns out that the keyword returned from CIRA was AVAIL and in the text that it returned was the word available. Therefore any domain it looked up, it would parse the text and find avail and think the domain was available.
The solution is in engine.php the code comes looking like this:
// determine if available
if (eregi(.....
Change it to:
// determine if available
if (ereg(
Ah there, now it parses case sensitive, finally, took a couple hours to figure it out, hope this helps someone.
|
|
Travis (Visitor)
|
Logged
|
|
|
|
|