From 7bd75cb3c1a7b7332484c5ba1ca47dcbc94a4ac5 Mon Sep 17 00:00:00 2001 From: nicolasconnault Date: Thu, 13 Mar 2008 14:02:54 +0000 Subject: [PATCH] MDL-13919 Fixed undefined variable. Merging from MOODLE_19_STABLE --- lib/tablelib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tablelib.php b/lib/tablelib.php index 01c881fdb5..d22f528e67 100644 --- a/lib/tablelib.php +++ b/lib/tablelib.php @@ -397,7 +397,7 @@ class flexible_table { $querystring .= '&'; } else { - $this->reseturl = $strippedurl.$querystring; + $this->reseturl = $strippedurl; $querystring = '?'; } -- 2.39.5