summaryrefslogtreecommitdiffstats
path: root/web/template/template.phps
diff options
context:
space:
mode:
Diffstat (limited to 'web/template/template.phps')
-rw-r--r--web/template/template.phps4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/template/template.phps b/web/template/template.phps
index 841277b8..8f112967 100644
--- a/web/template/template.phps
+++ b/web/template/template.phps
@@ -10,10 +10,10 @@ check_sid(); # see if they're still logged in
html_header(); # print out the HTML header
-# Any text you print out to the visitor, use the __() function
+# Any text you print out to the visitor, use the _() function
# for i18n support. See web/lib/translator.inc.php for more info.
#
-print __("Hi, this is worth reading!")."<br />\n";
+print _("Hi, this is worth reading!")."<br />\n";
html_footer(AUR_VERSION);