From e032888cdc3d90f571ec4972c399052f2aab8295 Mon Sep 17 00:00:00 2001 From: scyrma Date: Mon, 25 Feb 2008 08:11:07 +0000 Subject: [PATCH] MDL-13643 - Missing constant definition --- lib/moodlelib.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/moodlelib.php b/lib/moodlelib.php index ec17ff8c13..3cbd8604a5 100644 --- a/lib/moodlelib.php +++ b/lib/moodlelib.php @@ -153,6 +153,11 @@ define('PARAM_FILE', 0x0010); */ define('PARAM_TAG', 0x0011); +/** + * PARAM_TAGLIST - list of tags separated by commas (interests, blogs, etc.) + */ +define('PARAM_TAGLIST', 0x0012); + /** * PARAM_PATH - safe relative path name, all dangerous chars are stripped, protects against XSS, SQL injections and directory traversals * note: the leading slash is not removed, window drive letter is not allowed -- 2.39.5