drupal_set_message(t('Changed the content type of %update_count %posts from %old_type to %type.',array('%update_count'=>$update_count,'%posts'=>format_plural($update_count,'post','posts'),'%old_type'=>theme('placeholder',$type->old_type),'%type'=>theme('placeholder',$type->type))));
drupal_set_message(t('Changed the content type of %update_count %posts from %old_type to %type.',array('%update_count'=>$update_count,'%posts'=>format_plural($update_count,'post','posts'),'%old_type'=>$type->old_type,'%type'=>$type->type)));
cache_clear_all('filter:',TRUE);
}
}
...
...
@@ -320,7 +320,7 @@ function node_type_form_submit($form_id, $form_values) {
@@ -798,7 +798,7 @@ function system_cron_status($cron = '') {
else{
$status=t('Cron has not run. It appears cron jobs have not been setup on your system. Please check the help pages for <a href="@url">configuring cron jobs</a>.',array('@url'=>'http://drupal.org/cron'));
}
$status.=' '.t('Cron can, if necessary, also be run <a href="%cron">manually</a>.',array('%cron'=>url('admin/settings/cron-status/cron')));
$status.=' '.t('Cron can, if necessary, also be run <a href="!cron">manually</a>.',array('!cron'=>url('admin/settings/cron-status/cron')));