aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-04-15 23:59:39 +0200
committerAndreas Fischer <bantu@phpbb.com>2014-04-15 23:59:39 +0200
commite9807e17412299d7157d6be82777961a66cada90 (patch)
treed80913ea2895e6f16abe6feb8ff4181c56b2252f /phpBB/includes
parent675cef9c2e9ea571606415fb3228b5f2c73769d9 (diff)
parentbff63be512a0289d8d3278fe7510617be8b65cf4 (diff)
downloadforums-e9807e17412299d7157d6be82777961a66cada90.tar
forums-e9807e17412299d7157d6be82777961a66cada90.tar.gz
forums-e9807e17412299d7157d6be82777961a66cada90.tar.bz2
forums-e9807e17412299d7157d6be82777961a66cada90.tar.xz
forums-e9807e17412299d7157d6be82777961a66cada90.zip
Merge pull request #2310 from n-aleha/ticket/12397
[ticket/12397] Fix sql_unique_index_exists doc block * n-aleha/ticket/12397: [ticket/12397] Fix sql_unique_index_exists doc block
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/db/db_tools.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/db/db_tools.php b/phpBB/includes/db/db_tools.php
index 8dce769395..6913960185 100644
--- a/phpBB/includes/db/db_tools.php
+++ b/phpBB/includes/db/db_tools.php
@@ -875,7 +875,7 @@ class phpbb_db_tools
}
}
- // Add unqiue indexes?
+ // Add unique indexes?
if (!empty($schema_changes['add_unique_index']))
{
foreach ($schema_changes['add_unique_index'] as $table => $index_array)
@@ -1286,7 +1286,7 @@ class phpbb_db_tools
}
/**
- * Check if a specified index exists in table. Does not return PRIMARY KEY and UNIQUE indexes.
+ * Check if a specified index exists in table. Does not return PRIMARY KEY indexes.
*
* @param string $table_name Table to check the index at
* @param string $index_name The index name to check