diff options
Diffstat (limited to 'user_guide')
-rw-r--r-- | user_guide/general/changelog.html | 3 | ||||
-rw-r--r-- | user_guide/scripts/nav.js | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/user_guide/general/changelog.html b/user_guide/general/changelog.html index 80ffe7a4e..9aa9dcf02 100644 --- a/user_guide/general/changelog.html +++ b/user_guide/general/changelog.html @@ -79,6 +79,9 @@ Change Log <li>Fixed a bug that was causing a PHP error when the Exceptions class was called within the _get_config() function.</li>
<li>Fixed an oversight in the cookie helper in which the config file cookie settings were not being honored.</li>
<li>Added some code to allow email attachments to be reset when sending batches of email.</li>
+<li>Deprecated the <dfn>application/scripts</dfn> folder. It will continue to work for legacy users, but it is recommended that you create your own
+<a href="../general/libraries.html">libraries</a> or <a href="../general/models.html">models</a> instead.
+<li>Deprecated the <dfn>$autoload['core']</dfn> item from the <kbd>autoload.php</kbd> file. Instead, please now use: <kbd>$autoload['libraries']</kbd></li>
<li>Deprecated the following database functions: $this->db->smart_escape_str() and $this->db->fields().</li>
</ul>
diff --git a/user_guide/scripts/nav.js b/user_guide/scripts/nav.js index de5a35fa8..960a6a8b2 100644 --- a/user_guide/scripts/nav.js +++ b/user_guide/scripts/nav.js @@ -43,7 +43,6 @@ function create_menu(basepath) '<li><a href="'+base+'general/models.html">Models</a></li>' + '<li><a href="'+base+'general/helpers.html">Helpers</a></li>' + '<li><a href="'+base+'general/plugins.html">Plugins</a></li>' + - '<li><a href="'+base+'general/scripts.html">Scripts</a></li>' + '<li><a href="'+base+'general/libraries.html">Using Code Igniter Libraries</a></li>' + '<li><a href="'+base+'general/creating_libraries.html">Creating Your Own Libraries</a></li>' + '<li><a href="'+base+'general/core_classes.html">Creating Core Classes</a></li>' + |