' . t('Below you will find a list of all available sort criteria. Enable those criteria you wish to be available for the user to select. You can change the order these sort criteria will be displayed in the dropdown box by changing the weight. Changing the weight on this form will not affect the relative order of the sorts. The value used in the Display name column is the name that will be displayed to the user.'),
+ '#prefix' => '
' . t('Below you will find a list of all available sort criteria. Enable those criteria you wish to be available for the user to select. You can change the order these sort criteria will be displayed in the dropdown box by changing the weight. Changing the weight on this form will not affect the relative order of the sorts. The value used in the "Display name" column is the name that will be displayed to the user.'),
'#theme' => 'project_views_project_sort_method_options_form',
'#suffix' => '
',
'#tree' => TRUE,
Index: D:/InetPub/wwwroot/project/project.install
===================================================================
--- D:/InetPub/wwwroot/project/project.install (revision 43)
+++ D:/InetPub/wwwroot/project/project.install (working copy)
@@ -82,7 +82,7 @@
'default' => '',
),
'screenshots' => array(
- 'description' => t('An external link screenshots of the project.'),
+ 'description' => t('An external link to screenshots of the project.'),
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
Index: D:/InetPub/wwwroot/project/project.inc
===================================================================
--- D:/InetPub/wwwroot/project/project.inc (revision 43)
+++ D:/InetPub/wwwroot/project/project.inc (working copy)
@@ -221,7 +221,7 @@
);
foreach ($fields as $uri => $name) {
if ($node->$uri && !preg_match('/^(http|https|ftp):\/\//i', $node->$uri)) {
- form_set_error($uri, t('!field is not a valid URL.', array('!field' => $name)));
+ form_set_error($uri, t('%field is not a valid URL.', array('%field' => $name)));
}
}
@@ -492,7 +492,7 @@
if ($project = node_load($nid)) {
if (node_access('view', $project)) {
$output = module_invoke('cvs', 'get_project_contributors', $nid);
- drupal_set_title(t('Developers for %name', array('%name' => check_plain($project->title))));
+ drupal_set_title(t('Developers for %name', array('%name' => $project->title)));
project_project_set_breadcrumb($project, TRUE);
return $output;
}
@@ -510,7 +510,7 @@
if (node_access('view', $project)) {
$_REQUEST['nid'] = $nid;
$output = module_invoke('cvs', 'show_messages');
- drupal_set_title(t('CVS messages for %name', array('%name' => check_plain($project->title))));
+ drupal_set_title(t('CVS messages for %name', array('%name' => $project->title)));
project_project_set_breadcrumb($project, TRUE);
return $output;
}