Mailer project continued:
[mailer.git] / inc / libs / mediadata_functions.php
index 546d44a18c0a6087b3ddbab4c2c793e47ae382f3..617d69d38ccdedfa89acc8553bdc775bcb60b16f 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
@@ -46,7 +46,7 @@ function updateMediadataEntry ($keys_array, $mode, $value) {
        // Default is nothing added/updated
        $added = false;
 
-       // Do we have entries?
+       // Are there entries?
        if (is_array($keys_array) && ($value > 0)) {
                // Is an array so we can run it through
                foreach ($keys_array as $key) {
@@ -107,7 +107,7 @@ function getMediadataEntry ($key) {
        $result = SQL_QUERY_ESC("SELECT `media_value` FROM `{?_MYSQL_PREFIX?}_mediadata` WHERE `media_key`='%s' LIMIT 1",
                array($key), __FUNCTION__, __LINE__);
 
-       // Do we have one?
+       // Is there one?
        if (SQL_NUMROWS($result) == 1) {
                // Load data
                list($value) = SQL_FETCHROW($result);