View Single Post
  #2  
Old 14th February 2009, 09:14
Preceptor Preceptor is offline
Member
 
Join Date: Jun 2008
Posts: 5
Default
Template Shares 3.1 right? There is a bug in the database query getting the pincode you set. It's pretty easy to fix... Lemme get the code...
Yep...
Find this line :
Code:
 $sql = sql_query("SELECT * FROM pincode WHERE area = 2 LIMIT 1");
And replace with
Code:
$sql = sql_query("SELECT * FROM pincode WHERE area = 1 LIMIT 1");
There!
Fixed!
Reply With Quote