diff options
author | Andrey Andreev <narf@devilix.net> | 2015-06-23 20:25:12 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2015-06-23 20:25:12 +0200 |
commit | 105749b1bd60a591398168dc8da2a8a894a296b4 (patch) | |
tree | 2b9cc3a5e3d0367c3f2abce624a621bba29372b3 | |
parent | 626ffb3d3b0d3b09b8a217b0b87cf1085caf6e89 (diff) |
[ci skip] Remove an assign-by-ref example from DButil docs
Triggers an E_DEPRECATED message; reported via the forums:
http://forum.codeigniter.com/thread-62178-post-319791.html
-rw-r--r-- | user_guide_src/source/database/utilities.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide_src/source/database/utilities.rst b/user_guide_src/source/database/utilities.rst index 81b949dd7..2fa5239c8 100644 --- a/user_guide_src/source/database/utilities.rst +++ b/user_guide_src/source/database/utilities.rst @@ -180,7 +180,7 @@ backup data can be compressed in either Zip or Gzip format. .. note:: For Interbase/Firebird databases, the backup file name is the only parameter. - Eg. $this->dbutil->backup('db_backup_filename'); + $this->dbutil->backup('db_backup_filename'); .. note:: Due to the limited execution time and memory available to PHP, backing up very large databases may not be possible. If your database is @@ -197,7 +197,7 @@ Usage Example $this->load->dbutil(); // Backup your entire database and assign it to a variable - $backup =& $this->dbutil->backup(); + $backup = $this->dbutil->backup(); // Load the file helper and write the file to your server $this->load->helper('file'); |