Recent content by Emanuele

  1. Emanuele

    Fixed Bug in Response::charset() method

    I don't see any getter method for charset information. And moreover, If you look at the class, you can see that in this case the behaviour is different, as methods act as setters if called with a parameter, and getters if called without parameters. Lastly, if $charset variable is null, it...
  2. Emanuele

    Fixed Bug in Response::charset() method

    Class Response (src/XF/Http/Response.php), method charset(), around line 66: public function charset($charset = null) { if ($charset === null) { return $charset; } $this->charset = $charset; return $this; } I suppose that...
Top Bottom