aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/functions.php2
-rw-r--r--phpBB/includes/log/interface.php8
2 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index e202273204..93dfb4cd7f 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -3367,7 +3367,7 @@ function add_log()
return false;
}
- // no log class set, create a temporary one ourselves to keep backwards compatability
+ // no log class set, create a temporary one ourselves to keep backwards compatibility
if ($phpbb_log === null)
{
$phpbb_log = new phpbb_log(LOG_TABLE);
diff --git a/phpBB/includes/log/interface.php b/phpBB/includes/log/interface.php
index feeab585bf..dd0df236f6 100644
--- a/phpBB/includes/log/interface.php
+++ b/phpBB/includes/log/interface.php
@@ -23,7 +23,7 @@ if (!defined('IN_PHPBB'))
interface phpbb_log_interface
{
/**
- * This function returns the state of the log-system.
+ * This function returns the state of the log system.
*
* @param string $type The log type we want to check. Empty to get global log status.
*
@@ -32,7 +32,7 @@ interface phpbb_log_interface
public function is_enabled($type = '');
/**
- * This function allows disable the log-system. When add_log is called, the log will not be added to the database.
+ * This function allows disable the log system. When add_log is called, the log will not be added to the database.
*
* @param mixed $type The log type we want to disable. Empty to disable all logs.
* Can also be an array of types
@@ -42,7 +42,7 @@ interface phpbb_log_interface
public function disable($type = '');
/**
- * This function allows re-enable the log-system.
+ * This function allows re-enable the log system.
*
* @param mixed $type The log type we want to enable. Empty to enable all logs.
* Can also be an array of types
@@ -93,7 +93,7 @@ interface phpbb_log_interface
static public function generate_sql_keyword($keywords);
/**
- * Determinate whether the user is allowed to read and/or moderate the forum of the topic
+ * Determine whether the user is allowed to read and/or moderate the forum of the topic
*
* @param array $topic_ids Array with the topic ids
*