Skip to content

Commit 9b01a2c

Browse files
committed
Language: Fix language term
1 parent 08e8bd3 commit 9b01a2c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/datafiller/fill_many_users.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function fill_many_users($num)
2828
$em = Database::getManager();
2929

3030
while ($i < $num) {
31-
$output[] = array('title' => 'Users Filling Report:');
31+
$output[] = array('title' => 'Users filling report');
3232
foreach ($users as $j => $user) {
3333
//first check that the first item doesn't exist already
3434
$output[$i]['line-init'] = $user['firstname'];

tests/datafiller/fill_users.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function fill_users()
1616
$users = array(); //declare only to avoid parsing notice
1717
require_once 'data_users.php'; //fill the $users array
1818
$output = array();
19-
$output[] = array('title'=>'Users Filling Report:');
19+
$output[] = array('title'=>'Users filling report');
2020
foreach ($users as $i => $user) {
2121
//first check that the first item doesn't exist already
2222
$output[$i]['line-init'] = $user['firstname'];

0 commit comments

Comments
 (0)