Aleksander Machniak
2013-01-28 66d30994853ba9282c1d8f9cc189a195e79e8b9a
Make get_instance() a static method
1 files modified
4 ■■■■ changed files
installer/rcube_install.php 4 ●●●● patch | view | raw | blame | history
installer/rcube_install.php
@@ -64,7 +64,7 @@
  /**
   * Constructor
   */
  function rcube_install()
  function __construct()
  {
    $this->step = intval($_REQUEST['_step']);
    $this->is_post = $_SERVER['REQUEST_METHOD'] == 'POST';
@@ -73,7 +73,7 @@
  /**
   * Singleton getter
   */
  function get_instance()
  static function get_instance()
  {
    static $inst;