|
From: Verdon V. <ve...@us...> - 2008-02-11 21:08:28
|
Update of /cvsroot/phpwebsite-comm/modules/podcaster/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2926/class Modified Files: PCR_Forms.php Log Message: more tweaks for 1.1 Index: PCR_Forms.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/podcaster/class/PCR_Forms.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** PCR_Forms.php 9 Feb 2008 19:01:10 -0000 1.6 --- PCR_Forms.php 11 Feb 2008 21:08:27 -0000 1.7 *************** *** 219,222 **** --- 219,223 ---- $pager->addWhere('active', 1); } + $pager->setOrder('title', 'asc', true); $pager->setTemplate('list_channel.tpl'); $pager->addRowTags('rowTag'); *************** *** 260,263 **** --- 261,265 ---- $pager->addWhere('active', 1); } + $pager->setOrder('title', 'asc', true); if (!isset($channel_id)) { $pager->setTemplate('list_episode.tpl'); *************** *** 278,281 **** --- 280,284 ---- } + // $pager->db->setTestMode(); $this->podcaster->content = $pager->get(); } *************** *** 364,369 **** $tpl['INFO_4_LABEL'] = dgettext('podcaster', 'A note on permissons:'); $tpl['INFO_4'] = dgettext('podcaster', 'Honestly, I\'m still working on understanding the new system completely. I\'ve done a basic security audit and although I am sure there is no gross holes, I\'m sure I may have something wrong too ;-) I wanted to get this rewrite out asap and will do a more thorough permissioning review for the next podcaster release.'); ! $tpl['INFO_5_LABEL'] = dgettext('podcaster', 'A note on caching:'); ! $tpl['INFO_5'] = dgettext('podcaster', 'There is a typo in the core class Cache.php that although fixed in svn, the fix hasn\'t been released as of Jan 6 2008. If your channel RSS feeds don\'t seem to refresh after the cache duration, try disabling the cache in the Settings tab.'); $tpl['DONATE'] = sprintf(dgettext('podcaster', 'If you would like to help out with the ongoing development of Podcaster, %s click here to donate %s.'), '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=donations%40verdon%2eca&item_name=Podcaster%20Module%20Development&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=CA&bn=PP%2dDonationsBF&charset=UTF%2d8" target="new">', '</a>'); --- 367,372 ---- $tpl['INFO_4_LABEL'] = dgettext('podcaster', 'A note on permissons:'); $tpl['INFO_4'] = dgettext('podcaster', 'Honestly, I\'m still working on understanding the new system completely. I\'ve done a basic security audit and although I am sure there is no gross holes, I\'m sure I may have something wrong too ;-) I wanted to get this rewrite out asap and will do a more thorough permissioning review for the next podcaster release.'); ! $tpl['INFO_5_LABEL'] = null; ! $tpl['INFO_5'] = null; $tpl['DONATE'] = sprintf(dgettext('podcaster', 'If you would like to help out with the ongoing development of Podcaster, %s click here to donate %s.'), '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=donations%40verdon%2eca&item_name=Podcaster%20Module%20Development&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=CA&bn=PP%2dDonationsBF&charset=UTF%2d8" target="new">', '</a>'); |