We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7ea7c6b + d708304 commit c390247Copy full SHA for c390247
src/base_facebook.php
@@ -1258,7 +1258,8 @@ protected function getCurrentUrl() {
1258
*/
1259
protected function shouldRetainParam($param) {
1260
foreach (self::$DROP_QUERY_PARAMS as $drop_query_param) {
1261
- if (strpos($param, $drop_query_param.'=') === 0) {
+ if ($param === $drop_query_param ||
1262
+ strpos($param, $drop_query_param.'=') === 0) {
1263
return false;
1264
}
1265
0 commit comments