From a86bf9500c042a45bc764a6248a3b9f46aa946cd Mon Sep 17 00:00:00 2001 From: Andrew Hoffmann Date: Mon, 19 May 2025 12:20:55 -0500 Subject: [PATCH] Bug fix: urlCellPM key should not include a colon --- proxy.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proxy.php b/proxy.php index c414becf..6bb9f97c 100644 --- a/proxy.php +++ b/proxy.php @@ -62,7 +62,7 @@ $config_file = fopen("i2b2_config_domains.json", "r"); if ($config_file) { while (($line = fgets($config_file)) !== false) { - if(strpos($line, "urlCellPM:") !== false) $matches[] = $line; + if(strpos($line, "urlCellPM") !== false) $matches[] = $line; } fclose($config_file); } @@ -241,4 +241,4 @@ print($proxyResult); } -?> \ No newline at end of file +?>