Minor lang corrections

skala
Julio Montoya 14 years ago
parent 8e809360b3
commit 8cc843312b
  1. 2
      main/admin/access_url_edit.php
  2. 2
      main/admin/access_urls.php
  3. 1
      main/admin/configure_homepage.php

@ -77,7 +77,7 @@ if( $form->validate()) {
}
$form->addElement('text','url',get_lang('URL'),array('size'=>'30'));
$form->addElement('text','url', 'URL',array('size'=>'30'));
$form->addRule('url', get_lang('ThisFieldIsRequired'), 'required');
$form->addRule('url', '', 'maxlength',254);
$form->addElement('textarea','description',get_lang('Description'));

@ -148,7 +148,7 @@ $table = new SortableTableFromArrayConfig($urls, 2, 50, 'urls');
$table->set_additional_parameters($parameters);
//$table->set_header(0, '');
$table->set_header(0, get_lang('URL'));
$table->set_header(0, 'URL');
$table->set_header(1, get_lang('Description'));
$table->set_header(2, get_lang('Active'));
$table->set_header(3, get_lang('Modify'), false);

@ -14,7 +14,6 @@ api_protect_admin_script();
require_once api_get_path(LIBRARY_PATH).'WCAG/WCAG_rendering.php';
require_once api_get_path(LIBRARY_PATH).'fileUpload.lib.php';
require_once api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php';
require_once api_get_path(LIBRARY_PATH).'security.lib.php';
$action = Security::remove_XSS($_GET['action']);
$tbl_category = Database::get_main_table(TABLE_MAIN_CATEGORY);

Loading…
Cancel
Save