|
From: Verdon V. <ve...@us...> - 2008-01-06 00:35:15
|
Update of /cvsroot/phpwebsite-comm/modules/podcaster/inc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4231/inc Modified Files: settings.php Added Files: init.php Log Message: getting ready for 1.0.4 and release --- NEW FILE: init.php --- <?php /** * podcaster - phpwebsite module * * See docs/AUTHORS and docs/COPYRIGHT for relevant info. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @version $id $ * @author Verdon Vaillancourt <verdonv at users dot sourceforge dot net> */ PHPWS_Core::initModClass('podcaster', 'PCR_Runtime.php'); PCR_Runtime::showBlock(); ?> Index: settings.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/podcaster/inc/settings.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** settings.php 2 Jan 2008 04:48:38 -0000 1.1 --- settings.php 6 Jan 2008 00:34:48 -0000 1.2 *************** *** 23,35 **** */ ! $settings['channel_limit'] = 10; ! $settings['req_approval'] = 1; ! $settings['editor'] = null; ! $settings['webmaster'] = null; ! $settings['copyright'] = sprintf('Copyright %s', date('Y')); ! $settings['max_width'] = 160; ! $settings['max_height'] = 160; ! $settings['mod_folders_only'] = 1; ! $settings['rm_media'] = 1; ?> \ No newline at end of file --- 23,39 ---- */ ! $settings['channel_limit'] = 10; ! $settings['req_approval'] = 1; ! $settings['editor'] = null; ! $settings['webmaster'] = null; ! $settings['copyright'] = sprintf('Copyright %s', date('Y')); ! $settings['max_width'] = 160; ! $settings['max_height'] = 160; ! $settings['mod_folders_only'] = 1; ! $settings['rm_media'] = 1; ! $settings['show_block'] = 1; ! $settings['block_on_home_only'] = 1; ! $settings['block_order_by_rand'] = 1; ! $settings['cache_timeout'] = 3600; ?> \ No newline at end of file |