From 9db7f99b3c9c26c50fd7f474a327ea40e530eac6 Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Thu, 8 Jul 2010 13:24:24 +0000 Subject: [PATCH] MDL-23153 fixed incorrect string name --- mod/page/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/page/lib.php b/mod/page/lib.php index 06ba3311c55..86b80e825b0 100644 --- a/mod/page/lib.php +++ b/mod/page/lib.php @@ -280,7 +280,7 @@ function page_get_coursemodule_info($coursemodule) { */ function page_get_file_areas($course, $cm, $context) { $areas = array(); - $areas['content'] = get_string('pagecontent', 'page'); + $areas['content'] = get_string('content', 'page'); return $areas; } -- 2.17.1