Fix languages variables name - refs #7363

1.10.x
Angel Fernando Quiroz Campos 10 years ago
parent 6453d5e109
commit 1a7e5b16d1
  1. 2
      main/gradebook/my_certificates.php
  2. 9
      main/gradebook/search.php

@ -35,7 +35,7 @@ if (empty($courseList) || empty($sessionList)) {
$template->assign( $template->assign(
'actions', 'actions',
Display::toolbarButton( Display::toolbarButton(
get_lang('CertificatesSearch'), get_lang('SearchCertificates'),
api_get_path(WEB_CODE_PATH) . "gradebook/search.php", api_get_path(WEB_CODE_PATH) . "gradebook/search.php",
'search', 'search',
'info' 'info'

@ -38,7 +38,10 @@ if (!empty($firstname) && !empty($lastname)) {
$sessionList = GradebookUtils::getUserCertificatesInSessions($userId, false); $sessionList = GradebookUtils::getUserCertificatesInSessions($userId, false);
if (empty($courseList) && empty($sessionList)) { if (empty($courseList) && empty($sessionList)) {
$message = Display::return_message(get_lang('TheUserNotYetAchievedCertificates'), 'warning'); $message = Display::return_message(
sprintf(get_lang('TheUserXNotYetAchievedCertificates'), $userInfo['complete_name']),
'warning'
);
} }
} }
@ -47,7 +50,7 @@ $searchForm->addText('firstname', get_lang('Firstname'));
$searchForm->addText('lastname', get_lang('Lastname')); $searchForm->addText('lastname', get_lang('Lastname'));
$searchForm->addButtonSearch(); $searchForm->addButtonSearch();
$template = new Template(get_lang('CertificatesSearch')); $template = new Template(get_lang('SearchCertificates'));
$template->assign('search_form', $searchForm->returnForm()); $template->assign('search_form', $searchForm->returnForm());
$template->assign('user_list', $userList); $template->assign('user_list', $userList);
@ -58,7 +61,7 @@ $template->assign('message', $message);
$content = $template->fetch('default/gradebook/search.tpl'); $content = $template->fetch('default/gradebook/search.tpl');
$template->assign('header', get_lang('CertificatesSearch')); $template->assign('header', get_lang('SearchCertificates'));
$template->assign('content', $content); $template->assign('content', $content);
$template->display_one_col_template(); $template->display_one_col_template();

Loading…
Cancel
Save