The first replacement set is for MySQL, the second one is for MySQLi... you only use one type of connection so that's why it's working.
Notice that the 2 segments are not identical, there is a few bytes difference between them.
In first type of connection you find
($this->sql, $link), then in second you find
($link, $this->sql) in the function.
It's the only difference between the 2 functions.
You probably copied and pasted the same code in both places, thinking they are the same. That results into a parse error.