summaryrefslogtreecommitdiff
path: root/includes/sys_template.php
diff options
context:
space:
mode:
authorBot <bot@myigel.name>2017-01-21 19:37:42 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2017-01-21 20:12:35 +0100
commit915ce28feeb9104bf7854ccbd80caebb5dce4aaa (patch)
tree503a31809070fee875e82213d46b90fb0b2fcac9 /includes/sys_template.php
parent9a3ad8883403949a59e8935497a548ec536f1d40 (diff)
Replaced " with '
Diffstat (limited to 'includes/sys_template.php')
-rw-r--r--includes/sys_template.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/sys_template.php b/includes/sys_template.php
index 9b85df59..107609ad 100644
--- a/includes/sys_template.php
+++ b/includes/sys_template.php
@@ -260,7 +260,7 @@ function table($columns, $rows_raw, $data = true)
function render_table($columns, $rows, $data = true)
{
if (count($rows) == 0) {
- return info(_("No data found."), true);
+ return info(_('No data found.'), true);
}
$html = '<table class="table table-striped' . ($data ? ' data' : '') . '">';