Skip to content

Instantly share code, notes, and snippets.

@objectivehtml
Last active December 16, 2015 16:09
Show Gist options
  • Save objectivehtml/5460790 to your computer and use it in GitHub Desktop.
Save objectivehtml/5460790 to your computer and use it in GitHub Desktop.

EE 2.6.0 Bugs

  1. Line 278 of EE_Config.php uses reduce_double_slashes(). On EE upgrades that don't have the stringer helper auto-loaded, this will cause errors. You need to load the helper library to ensure that function exists.

  2. If an add-on uses $this->EE->load->library('my_library') within the EE update method it gives a "my_library cannot be loaded" error. Even $this->EE->load->add_package_path(PATH_THIRD.'your_module'); failed to load the correct library.

  3. If you update an existing site and don't replace the current config with the new values (routes.php for example) the routing breaks and fails to deliver the CP.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment