View Single Post
  #7  
Unread 05-30-2008, 06:48 PM
macker0407 macker0407 is offline
A Coastal Crab
 
Join Date: Feb 2006
Server: Antonia Bayle
Posts: 1
Default

The problem is with the _ProfitUI_StandardSearches.txt file. The new lootdb link contains an unescaped &, which stuffs things up. Just open the file with notepad and the line that reads:

Code:
<Data Name="ItemSearch4" Text="LootDB" URL="http://www.lootdb.com/?t=item&q="/>
Change it to:

Code:
<Data Name="ItemSearch4" Text="LootDB" URL="http://www.lootdb.com/?t=item&amp;q="/>
Reply With Quote