Deprecated: Assigning the return value of new by reference is deprecated in /home/bluestat/public_html/source/index.php on line 477
From e6cfc0ff9adeab40a8e0651afbcb70892e22297b Mon Sep 17 00:00:00 2001
From: Robert Sesek
Date: Tue, 14 Oct 2008 10:14:27 -0400
Subject: [PATCH] Column headers in includes/definitions.php were still marked
with _() instead of T()
* includes/definitions.php
---
docs/changes.txt | 4 +++-
includes/definitions.php | 26 +++++++++++++-------------
2 files changed, 16 insertions(+), 14 deletions(-)
diff --git a/docs/changes.txt b/docs/changes.txt
index 9ed3ca7..3fae91d 100644
--- a/docs/changes.txt
+++ b/docs/changes.txt
@@ -1,6 +1,8 @@
1.2.3
===============================
-- Fixed: Custom select field that is mandatory doesn't accept the first option as a valid entry (bug://report/121)
+- Fixed: #121: Custom select field that is mandatory doesn't accept the first option as a valid entry
+- Fixed: Improved XHTML compliance in various templates
+- Fixed: #134: Column headers (defined in includes/definitions.php) were not marked with T() for translation
1.2.2
===============================
diff --git a/includes/definitions.php b/includes/definitions.php
index 53cd4c8..bd8c1a9 100644
--- a/includes/definitions.php
+++ b/includes/definitions.php
@@ -36,19 +36,19 @@ $bugsys->columns = array(
);
$bugsys->columnNames = array(
- 'bugid' => _('ID'),
- 'summary' => _('Summary'),
- 'reporter' => _('Reporter'),
- 'product' => _('Product'),
- 'component' => _('Component'),
- 'version' => _('Version'),
- 'status' => _('Status'),
- 'resolution' => _('Resolution'),
- 'priority' => _('Priority'),
- 'severity' => _('Severity'),
- 'lastpost' => _('Last Post'),
- 'votes' => _('Votes'),
- 'assignedto' => _('Assigned To')
+ 'bugid' => T('ID'),
+ 'summary' => T('Summary'),
+ 'reporter' => T('Reporter'),
+ 'product' => T('Product'),
+ 'component' => T('Component'),
+ 'version' => T('Version'),
+ 'status' => T('Status'),
+ 'resolution' => T('Resolution'),
+ 'priority' => T('Priority'),
+ 'severity' => T('Severity'),
+ 'lastpost' => T('Last Post'),
+ 'votes' => T('Votes'),
+ 'assignedto' => T('Assigned To')
);
/*=====================================================================*\
--
1.7.11.3