2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
$form['src']=array('#type'=>'textfield','#title'=>t('Existing system path'),'#default_value'=>$edit['src'],'#maxlength'=>64,'#description'=>t('Specify the existing path you wish to alias. For example: node/28, forum/1, taxonomy/term/1+2.'));
$form['dst']=array('#type'=>'textfield','#default_value'=>$edit['dst'],'#maxlength'=>64,'#description'=>t('Specify an alternative path by which this data can be accessed. For example, type "about" when writing an about page. Use a relative path and don\'t add a trailing slash or the URL alias won\'t work.'));
$form['src']=array(
'#type'=>'textfield',
'#title'=>t('Existing system path'),
'#default_value'=>$edit['src'],
'#maxlength'=>64,
'#size'=>45,
'#description'=>t('Specify the existing path you wish to alias. For example: node/28, forum/1, taxonomy/term/1+2.'),
'#description'=>t('Specify an alternative path by which this data can be accessed. For example, type "about" when writing an about page. Use a relative path and don\'t add a trailing slash or the URL alias won\'t work.'),
'#description'=>t('The home page displays content from this relative URL. If you are not using clean URLs, specify the part after "<code>?q=</code>". If unsure, specify "node".')
'#size'=>40,
'#description'=>t('The home page displays content from this relative URL. If unsure, specify "node".'),
@@ -584,14 +586,18 @@ function system_error_reporting_settings() {
'#type'=>'textfield',
'#title'=>t('Default 403 (access denied) page'),
'#default_value'=>variable_get('site_403',''),
'#description'=>t('This page is displayed when the requested document is denied to the current user. If you are not using clean URLs, specify the part after "<code>?q=</code>". If unsure, specify nothing.')
'#size'=>40,
'#description'=>t('This page is displayed when the requested document is denied to the current user. If unsure, specify nothing.'),
'#description'=>t('This page is displayed when no other content matches the requested document. If you are not using clean URLs, specify the part after "<code>?q=</code>". If unsure, specify nothing.')
'#size'=>40,
'#description'=>t('This page is displayed when no other content matches the requested document. If unsure, specify nothing.'),