summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/database
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2015-06-23 20:25:12 +0200
committerAndrey Andreev <narf@devilix.net>2015-06-23 20:25:12 +0200
commit105749b1bd60a591398168dc8da2a8a894a296b4 (patch)
tree2b9cc3a5e3d0367c3f2abce624a621bba29372b3 /user_guide_src/source/database
parent626ffb3d3b0d3b09b8a217b0b87cf1085caf6e89 (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
Diffstat (limited to 'user_guide_src/source/database')
-rw-r--r--user_guide_src/source/database/utilities.rst4
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');