02 JULY 2012  <M>
-----------------------------------------------------------------------------
ALTER TABLE `es_users` CHANGE `nZip` `nZip` VARCHAR( 11 ) NULL DEFAULT NULL



05 Feb 2013
----------------------

INSERT INTO `es_content` (
`content_id` ,
`content_name` ,
`content_type` ,
`content_status`
)
VALUES (
NULL , 'paypalEmailRequestToSeller', 'email', 'y'
);


INSERT INTO `es_content_lang` (
`content_lang_id` ,
`content_id` ,
`lang_id` ,
`content` ,
`content_title`
)
VALUES (
NULL , '42', '1', '<table class="maintext2" border="0" cellspacing="1" cellpadding="4" width="100%">                              
<tbody>                              
<tr bgcolor="#ffffff">                              
<td class="maintext2" align="left"><b>Payment Information</b></td> </tr>                              
<tr bgcolor="#ffffff">                              
<td width="21%" align="left">Sale of your items have been discontinued temporarily. Kindly update your Profile contact details with "PayPal EmailId"</td>  </tr>                              
<tr bgcolor="#ffffff">                              
<td colspan="2" align="left">Thank You,</td> </tr>                              
<tr bgcolor="#ffffff">                              
<td align="left">{SITE_NAME} Crew | {SITE_URL}</td> </tr> </tbody></table>        

', '{SITE_NAME} - Sale of your items have been discontinued temporarily'
);

--------------------------------------------

 INSERT INTO `es_content_lang` (
`content_lang_id` ,
`content_id` ,
`lang_id` ,
`content` ,
`content_title`
)
VALUES (
'167', '42', '2', ' <b> conditions de vente</b> <table border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td colspan="3" style="width: 576px; height: 0px;"> <p>Vente de vos articles ont &eacute;t&eacute; supprim&eacute;s temporairement. Veuillez mettre &agrave; jour vos coordonn&eacute;es avec le profil "Id Email PayPal"</p> <p>Merci!</p> </td></tr> <tr> <td colspan="3" style="width: 576px; height: 0px;"> <p>{SITE_NAME} Crew. | {SITE_URL}</p> </td></tr></tbody></table> ', '{SITE_NAME} - Vente de vos articles ont �t� supprim�s temporairement'
);

--------------------------------------------

 INSERT INTO `es_content_lang` (
`content_lang_id` ,
`content_id` ,
`lang_id` ,
`content` ,
`content_title`
)
VALUES (
'168', '42', '5', ' <table border="0" cellpadding="4" cellspacing="0" width="586"> <tbody> <tr> <td colspan="2"> <b>condiciones de venta</b> <p>La venta de sus art&iacute;culos se han suspendido temporalmente. Por favor actualice sus datos de contacto con perfil "Identificaci&oacute;n del email PayPal"</p> <p>Gracias.</p> </td></tr> <tr> <td colspan="2"> <p>{SITE_NAME} Tripulacion. | {SITE_URL}</p> <div><br /></div></td></tr></tbody></table> ', '{SITE_NAME} - La venta de sus art�culos se han suspendido temporalmente'
);
---------------------------------------------

 INSERT INTO `es_content_lang` (
`content_lang_id` ,
`content_id` ,
`lang_id` ,
`content` ,
`content_title`
)
VALUES (
'169', '42', '6', ' <table border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td colspan="3" style="width: 576px; height: 0px;"><b>Zahlungsinformationen</b><br /><br />Verkauf Ihrer Artikel wurden vor&uuml;bergehend eingestellt. Bitte aktualisieren Sie Ihr Profil Kontaktdaten mit "PayPal Email Id"<br /><br />Vielen Dank</td></tr> <tr> <td colspan="3" style="width: 576px; height: 0px;"> <p>{SITE_NAME} Crew | {SITE_URL}</p> </td></tr></tbody></table> ', '{SITE_NAME} - Verkauf Ihrer Artikel wurden vor�bergehend eingestellt'
)


PHP 5.4 FIXES
1) Removed all short tags
2) session_register and session_unregister functions are removed.Instead use $_SESSION
3) eregi replaced to preg_match
4)  /*if( ini_get('safe_mode') ){//safe_mode is on
$error = true;
$message .= " * The script requires PHP with safe mode Off to work properly. Installation cannot continue! <br>";
}*/
commented in  in install page
5) ini_get(short_tags) section commented in install page
6)

05 May 2015
--------------------------------------------------------------------------------------------------------

ALTER TABLE `es_saledetails` 
ADD COLUMN `vAddress1` VARCHAR(100) NULL DEFAULT NULL,
ADD COLUMN `vAddress2` VARCHAR(100) NULL DEFAULT NULL,
ADD COLUMN `vCity` VARCHAR(100) NULL DEFAULT NULL,
ADD COLUMN `vState` VARCHAR(100) NULL DEFAULT NULL,
ADD COLUMN `vCountry` VARCHAR(100) NULL DEFAULT NULL,
ADD COLUMN `nZip` VARCHAR(11) NULL DEFAULT NULL,
ADD COLUMN `vPhone` VARCHAR(50) NULL DEFAULT NULL

CREATE TABLE `es_sliders` (
	`nSId` INT(11) NOT NULL AUTO_INCREMENT,
	`vName` VARCHAR(200) NULL,
	`vImg` VARCHAR(200) NULL DEFAULT NULL,
	`nDate` DATE NULL DEFAULT '0000-00-00',
	`vActive` ENUM('1','0') NULL DEFAULT '0',
	PRIMARY KEY (`nSId`)
)
COLLATE='latin1_swedish_ci'
ENGINE=MyISAM;

INSERT INTO `es_content` (`content_name`, `content_type`, `content_status`) VALUES ('homebannertexts', 'page', 'y');

Bug Fixes and features
----------------------
1. Made responsive design template.
2. Fixed some of the critical bugs commonly reported in Escalations and that came up in testing.


