Update of /cvsroot/phpwebsite-comm/modules/article/inc
In directory sc8-pr-cvs1:/tmp/cvs-serv28283/inc
Modified Files:
editconfig.php
Log Message:
General bugfixes, including resolution and optimization of various article deletion issues
Index: editconfig.php
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/editconfig.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** editconfig.php 9 Jul 2003 20:24:26 -0000 1.1
--- editconfig.php 14 Jul 2003 20:46:25 -0000 1.2
***************
*** 66,70 ****
/* listings_per_page */
$tags['LISTINGS_PER_PAGE'] =
! $GLOBALS['core']->formSelect('CONFIG_listings_per_page', range(0,50)
, $this->val['listings_per_page'], NULL, NULL, NULL)
. ' ' . $_SESSION['translate']->it('Number of listings to show per page under the Main Menu')
--- 66,70 ----
/* listings_per_page */
$tags['LISTINGS_PER_PAGE'] =
! $GLOBALS['core']->formSelect('CONFIG_listings_per_page', range(1,50)
, $this->val['listings_per_page'], NULL, NULL, NULL)
. ' ' . $_SESSION['translate']->it('Number of listings to show per page under the Main Menu')
***************
*** 151,156 ****
$tags['DEFAULT_YEAR_COUNT'] = $_SESSION['translate']->it('Publication dates can be set up to [var1] year(s) from article creation.'
, $GLOBALS['core']->formSelect('CONFIG_default_year_count', range(1,5)
! , $this->val['default_year_count'], NULL, NULL, NULL) )
! . $_SESSION['OBJ_help']->show_link('article', 'default_year_count');
/* max_image_size */
--- 151,155 ----
$tags['DEFAULT_YEAR_COUNT'] = $_SESSION['translate']->it('Publication dates can be set up to [var1] year(s) from article creation.'
, $GLOBALS['core']->formSelect('CONFIG_default_year_count', range(1,5)
! , $this->val['default_year_count'], NULL, NULL, NULL) );
/* max_image_size */
***************
*** 164,177 ****
$tags['MAX_IMAGE_HEIGHT'] = $_SESSION['translate']->it('The maximum uploaded image [var1] allowed is [var2] pixels'
, 'height'
! , $GLOBALS['core']->formTextField('CONFIG_max_image_height'
! , $this->val['max_image_height'], 4, 4))
! . $_SESSION['OBJ_help']->show_link('article', 'max_image_height');
/* max_image_width */
$tags['MAX_IMAGE_WIDTH'] = $_SESSION['translate']->it('The maximum uploaded image [var1] allowed is [var2] pixels'
, 'width'
! , $GLOBALS['core']->formTextField('CONFIG_max_image_width'
! , $this->val['max_image_width'], 4, 4))
! . $_SESSION['OBJ_help']->show_link('article', 'max_image_width');
/* restricted_viewing */
--- 163,172 ----
$tags['MAX_IMAGE_HEIGHT'] = $_SESSION['translate']->it('The maximum uploaded image [var1] allowed is [var2] pixels'
, 'height'
! , $GLOBALS['core']->formTextField('CONFIG_max_image_height', $this->val['max_image_height'], 4, 4));
/* max_image_width */
$tags['MAX_IMAGE_WIDTH'] = $_SESSION['translate']->it('The maximum uploaded image [var1] allowed is [var2] pixels'
, 'width'
! , $GLOBALS['core']->formTextField('CONFIG_max_image_width', $this->val['max_image_width'], 4, 4));
/* restricted_viewing */
***************
*** 193,200 ****
. $_SESSION['OBJ_help']->show_link('configmanager', 'make_metatags');
! $tags['SAVE'] = $GLOBALS['core']->formSubmit($_SESSION['translate']->it('Save Settings'), 'ARTICLE_vars[config:save]')
! . $_SESSION['OBJ_help']->show_link('article', 'config_save');
! $tags['RESET'] = $GLOBALS['core']->formSubmit($_SESSION['translate']->it('Reset Settings'), 'ARTICLE_vars[config:reset]')
! . $_SESSION['OBJ_help']->show_link('article', 'config_save');
$content[0] = $GLOBALS['core']->processTemplate($tags,'article','config.tpl');
--- 188,193 ----
. $_SESSION['OBJ_help']->show_link('configmanager', 'make_metatags');
! $tags['SAVE'] = $GLOBALS['core']->formSubmit($_SESSION['translate']->it('Save Settings'), 'ARTICLE_vars[config:save]');
! $tags['RESET'] = $GLOBALS['core']->formSubmit($_SESSION['translate']->it('Reset Settings'), 'ARTICLE_vars[config:reset]');
$content[0] = $GLOBALS['core']->processTemplate($tags,'article','config.tpl');
|