]> git.joonet.de Git - adminer.git/commitdiff
Rename functions (avoid conflict with WordPress)
authorJakub Vrana <jakub@vrana.cz>
Sat, 16 Oct 2010 13:47:51 +0000 (15:47 +0200)
committerJakub Vrana <jakub@vrana.cz>
Sat, 16 Oct 2010 13:47:51 +0000 (15:47 +0200)
adminer/include/functions.inc.php
adminer/select.inc.php
editor/include/adminer.inc.php
editor/include/editing.inc.php

index b749f9121e596e9ee522139f098c9bfd0f5d200c..34feeb32ee5f312c27991f17245ad77180cea549 100644 (file)
@@ -730,7 +730,7 @@ function password_file() {
 * @param string
 * @return bool
 */
-function is_email($email) {
+function is_mail($email) {
        $atom = '[-a-z0-9!#$%&\'*+/=?^_`{|}~]'; // characters of local-name
        $domain = '[a-z0-9]([-a-z0-9]{0,61}[a-z0-9])'; // one domain component
        $pattern = "$atom+(\\.$atom+)*@($domain?\\.)+$domain";
index 079c1d33376db2a1e028ce558b8669dd93f75726..363ef22a48fbd8c98aac565c83ee3105fff7d5cc 100644 (file)
@@ -279,7 +279,7 @@ if (!$columns) {
                                        if (isset($names[$key])) {
                                                $field = $fields[$key];
                                                if ($val != "" && (!isset($email_fields[$key]) || $email_fields[$key] != "")) {
-                                                       $email_fields[$key] = (is_email($val) ? $names[$key] : ""); //! filled e-mails can be contained on other pages
+                                                       $email_fields[$key] = (is_mail($val) ? $names[$key] : ""); //! filled e-mails can be contained on other pages
                                                }
                                                $link = "";
                                                $val = $adminer->editVal($val, $field);
@@ -322,7 +322,7 @@ if (!$columns) {
                                                        }
                                                }
                                                if (!$link) {
-                                                       if (is_email($val)) {
+                                                       if (is_mail($val)) {
                                                                $link = "mailto:$val";
                                                        }
                                                        if ($protocol = is_url($row[$key])) {
index 92249fd28c2205be6a53ff01bf6287bd11b2b944..8c8d990d2bc70d1dae10b6d08c5a60d88e558100 100644 (file)
@@ -358,7 +358,7 @@ ORDER BY ORDINAL_POSITION", null, "") as $row) { //! requires MySQL 5
                                                $replace['{$' . "$val}"] = $this->editVal($row[$val], $fields[$val]);
                                        }
                                        $email = $row[$_POST["email_field"]];
-                                       if (is_email($email) && send_email($email, strtr($subject, $replace), strtr($message, $replace), $_POST["email_from"], $_FILES["email_files"])) {
+                                       if (is_mail($email) && send_mail($email, strtr($subject, $replace), strtr($message, $replace), $_POST["email_from"], $_FILES["email_files"])) {
                                                $sent++;
                                        }
                                }
index 58fedbb5fae33f521be9a4437c788e8c91f79f47..45d12d40d95d3cdae6e7d107bc97d02c0c8ace4c 100644 (file)
@@ -16,7 +16,7 @@ function email_header($header) {
 * @param array
 * @return 
 */
-function send_email($email, $subject, $message, $from = "", $files = array()) {
+function send_mail($email, $subject, $message, $from = "", $files = array()) {
        $eol = (strncasecmp(PHP_OS, "win", 3) ? "\n" : "\r\n"); // PHP_EOL available since PHP 4.3.10 and 5.0.2
        $message = str_replace("\n", $eol, wordwrap(str_replace("\r", "", "$message\n")));
        $boundary = uniqid("boundary");