Changeset 527 for trunk/profile.php


Ignore:
Timestamp:
Sep 20, 2004, 12:26:41 AM (20 years ago)
Author:
gweltas
Message:
  • dispatch of configuration
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/profile.php

    r452 r527  
    5454             or $_POST['maxwidth'] < 50 ) )
    5555  {
    56     array_push( $errors, $lang['err_maxwidth'] );
     56    array_push( $errors, $lang['maxwidth_error'] );
    5757  }
    5858  if ( $_POST['maxheight']
     
    6060             or $_POST['maxheight'] < 50 ) )
    6161  {
    62     array_push( $errors, $lang['err_maxheight'] );
     62    array_push( $errors, $lang['maxheight_error'] );
    6363  }
    6464  // periods must be integer values, they represents number of days
     
    6666      or $_POST['recent_period'] <= 0)
    6767  {
    68     array_push( $errors, $lang['err_periods'] );
     68    array_push( $errors, $lang['periods_error'] );
    6969  }
    7070  $mail_error = validate_mail_address( $_POST['mail_address'] );
     
    139139  'L_CONFIRM' =>  $lang['reg_confirm'],
    140140  'L_COOKIE' =>  $lang['create_cookie'],
    141   'L_LANG_SELECT'=>$lang['customize_language'],
    142   'L_NB_IMAGE_LINE'=>$lang['customize_nb_image_per_row'],
    143   'L_NB_ROW_PAGE'=>$lang['customize_nb_row_per_page'],
    144   'L_STYLE_SELECT'=>$lang['customize_theme'],
    145   'L_RECENT_PERIOD'=>$lang['customize_recent_period'],
    146   'L_EXPAND_TREE'=>$lang['customize_expand'],
    147   'L_NB_COMMENTS'=>$lang['customize_show_nb_comments'],
     141  'L_LANG_SELECT'=>$lang['language'],
     142  'L_NB_IMAGE_LINE'=>$lang['nb_image_per_row'],
     143  'L_NB_ROW_PAGE'=>$lang['nb_row_per_page'],
     144  'L_STYLE_SELECT'=>$lang['theme'],
     145  'L_RECENT_PERIOD'=>$lang['recent_period'],
     146  'L_EXPAND_TREE'=>$lang['auto_expand'],
     147  'L_NB_COMMENTS'=>$lang['show_nb_comments'],
    148148  'L_YES'=>$lang['yes'],
    149149  'L_NO'=>$lang['no'],
Note: See TracChangeset for help on using the changeset viewer.