From ed52cb40f01e5e297d8b67ea6af209fcd6fae746 Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Wed, 12 Oct 2011 21:41:37 +0200 Subject: [PATCH] Fixed error message --- .../system/template/plugin/LinkBlockTemplatePlugin.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/template/plugin/LinkBlockTemplatePlugin.class.php b/wcfsetup/install/files/lib/system/template/plugin/LinkBlockTemplatePlugin.class.php index 8d1c9751da..e4c5e95c5b 100644 --- a/wcfsetup/install/files/lib/system/template/plugin/LinkBlockTemplatePlugin.class.php +++ b/wcfsetup/install/files/lib/system/template/plugin/LinkBlockTemplatePlugin.class.php @@ -29,7 +29,7 @@ class LinkBlockTemplatePlugin implements IBlockTemplatePlugin { * @see wcf\system\template\IBlockTemplatePlugin::execute() */ public function execute($tagArgs, $blockContent, TemplateEngine $tplObj) { - if (!isset($tagArgs['controller'])) throw new SystemException("missing 'controller' argument in pages tag"); + if (!isset($tagArgs['controller'])) throw new SystemException("missing 'controller' argument in link tag"); if (!isset($tagArgs['application']) || empty($tagArgs['application'])) { $tagArgs['application'] = 'wcf'; } -- 2.20.1