Commit ab8beded by Jason Jordan

reinstate null assignment, something downstream seems to depend on it

parent bd88dbf5
......@@ -4091,7 +4091,7 @@ class WebUIExecutor {
*/
public function recordAnalytics($input) {
$request = ["command" => "analytics"];
$request["icid"] = isset($input["icid"]) ? $input["icid"] : "";
$request["icid"] = $input["icid"];
$request["url"] = $input["url"];
$request["repo_ic_id"] = $input["repo_ic_id"];
$this->connect->query($request);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment