PDA

View Full Version : eSyndiCat 2.2.04 Has Been Released


Simon Gooffin
04-23-2008, 10:41 AM
Hi all,

We are happy to release a new patch for our 2.2 version. It contains some fixes for known bugs. Below is the list of changes:
#1. Undefined the $POST variable while rating a listing
Modified : exstars.php

#2. Display error message if the tpl file doesn't exists in the template directory.
Modified : includes/classes/esynSmarty.php

#3. Edit listing bug. The script doesn't allow to add empty value even through field is not required.
Modified : edit-listing.php

#4. Imroved compatibility with Microsoft IIS. Full support for Microsoft IIS and ISAPIRewrite 3
Modified : index.php
Modified : install/index.php

#5. Visitor sorting bug.
Modified : includes/classes/esynCategory.php

#6. Don't force to set default value for listing field if it is not required. http://www.esyndicat.com/forum/project.php?issueid=277
Modified : admin/manage-fields.php

#7. Bug with updating order field to zero value. http://www.esyndicat.com/forum/project.php?issueid=283
Modified : admin/order-categories.php

#8. Remove sponsored action in Manage Listings have not properly message. http://www.esyndicat.com/forum/project.php?issueid=105
Modified : admin/manage-listings.php

#9. The custom listing fields are empty on edit page.
Modified : edit-listing.php

#10. Text appears on one line. http://www.esyndicat.com/forum/project.php?issueid=241
Modified : templates/Default/view-listing.tpl

#11. Deep links bug on confirmed page. Doesn't show empty deep links.
Modified : templates/Default/suggest-listing2.tpl

#12. Get random listings function bug.
Modified : classes/esynListing.php

#13. Account box tabindex bug. http://www.esyndicat.com/forum/project.php?issueid=239
Modified : install/database/mysql-data.sql

#14. Deep links bug. The deep links don't save. http://www.esyndicat.com/forum/project.php?issueid=233
Modified : suggest-listing.php
Modified : templates/Default/suggest-listing.tpl

#15. Don't change listing plan after upgrading listing.
Modified : templates/Default/upgrade-listing.tpl

#16. Bug when input the listing URL without http://. The script doesn't add the http:// itself.
Modified : suggest-listing.php

#17. Set approval status after editing listing.
Modified : includes/classes/esynListing.php

#18. The count of comments doesn't increase after approval. http://www.esyndicat.com/forum/about13667.html
Modified : admin/manage-comments.php

#19. Getting wrong listing fields by plan and by category id.
Modified : edit-listing.php
Modified : includes/classes/esynListing.php


Upgrade is pretty simply.

#1. Backup your current database and files
#2. Download the patch
#3. Reupload patch files to your working version
#4. Execute MySQL dump
Admin Panel- > Manage Database -> Import choose 2204 and click go

That's all

Let us know if you have any questions.

majnoon
04-23-2008, 08:47 PM
superb work guys. Simon it would be good if the guys can post template changes for 2.2.04 just like Anton's post when 2.2.03 was released.

Sergey Ten
04-24-2008, 05:19 AM
Hello all,

Template changes:

[ Suggest-listing.tpl ]

[ 2.2.03 ]


<fieldset>
<legend>{$lang.deep_links}</legend>
<div id="deep_links">
{foreach from=$listing._deep_links item=t key=u}
<label>{$lang.title}:
<input type="text" class="text" name="deep_links[title][]" value="{$t}" size="15" />
</label>
<label>{$lang.url}:
<input type="text" class="text" name="deep_links[url][]" value="{$u}" size="15" />
</label>
<hr />
{/foreach}
</div>
</fieldset>


[ 2.2.04 ]


<fieldset>
<legend>{$lang.deep_links}</legend>
<div id="deep_links">
{foreach from=$listing._deep_links item=t key=u}
<label>{$lang.title}:
<input type="text" class="text" name="deep_links[title][]" value="{if $t neq 'empty'}{$t}{/if}" size="15" />
</label>
<label>{$lang.url}:
<input type="text" class="text" name="deep_links[url][]" value="{if $t neq 'empty'}{$u}{/if}" size="15" />
</label>
<hr />
{/foreach}
</div>
</fieldset>



[ Suggest-listing2.tpl ]

[ 2.2.03 ]


{foreach from=$listing._deep_links item=t key=u}
<li><a href="{$u|escape:"html"}">{$t|escape:"html"}</a>
<input type="hidden" name="deep_links[title][]" value="{$t|escape:"html"}" />
<input type="hidden" name="deep_links[url][]" value="{$u|escape:"html"}" />
</li>
{/foreach}


[ 2.2.04 ]


{foreach from=$listing._deep_links item=t key=u}
{if $t neq 'empty'}
<li><a href="{$u|escape:"html"}">{$t|escape:"html"}</a>
<input type="hidden" name="deep_links[title][]" value="{$t|escape:"html"}" />
<input type="hidden" name="deep_links[url][]" value="{$u|escape:"html"}" />
</li>
{/if}
{/foreach}



[ Upgrade-listing.tpl ]

[ 2.2.03 ]


<input type="hidden" name="id_link" value="{$smarty.get.id}" />


[ 2.2.04 ]


<input type="hidden" name="listing_id" value="{$smarty.get.id}" />



[ View-listing.tpl ]

[ 2.2.03 ]


{if $config.html_tags}
{$listing.$key}
{else}
{$listing.$key|escape:"html"}
{/if}


[ 2.2.04 ]


{if $config.html_tags}
{$listing.$key|replace:"\r\n":"<br />"}
{else}
{$listing.$key|escape:"html"}
{/if}

majnoon
04-24-2008, 05:38 AM
thank you sergey

smartpc
04-27-2008, 05:23 AM
Thanks go out to Simon, Sergey and all the esyndicat team for a great job...

:applause:

This script is getting better and better.... keep up the good work...

Knew it was the right choice... :good:

Makes building sites a joy :yahoo:

WTM
04-28-2008, 05:47 PM
God job guys!
One quick question - bug with custom fields search wasn't fixed?