From: <var...@us...> - 2010-12-20 12:37:31
|
Revision: 7787 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7787&view=rev Author: vargenau Date: 2010-12-20 12:37:25 +0000 (Mon, 20 Dec 2010) Log Message: ----------- Spelling Modified Paths: -------------- trunk/lib/WikiUserNew.php trunk/lib/plugin/Transclude.php Modified: trunk/lib/WikiUserNew.php =================================================================== --- trunk/lib/WikiUserNew.php 2010-12-20 09:32:36 UTC (rev 7786) +++ trunk/lib/WikiUserNew.php 2010-12-20 12:37:25 UTC (rev 7787) @@ -1759,7 +1759,7 @@ if ($ok) { return $value; } else { - trigger_error("E-Mail Validation Error: ".$msg, E_USER_WARNING); + trigger_error("E-mail Validation Error: ".$msg, E_USER_WARNING); return $this->default_value; } } @@ -1839,11 +1839,11 @@ if (!preg_match($rfc822re, $email)) { $result[0] = false; - $result[1] = sprintf(_("E-Mail address '%s' is not properly formatted"), $email); + $result[1] = sprintf(_("E-mail address '%s' is not properly formatted"), $email); return $result; } if ($noconnect) - return array(true, sprintf(_("E-Mail address '%s' is properly formatted"), $email)); + return array(true, sprintf(_("E-mail address '%s' is properly formatted"), $email)); list ( $Username, $Domain ) = explode("@", $email); //Todo: getmxrr workaround on windows or manual input field to verify it manually @@ -1883,11 +1883,11 @@ } } else { $result[0]=false; - $result[1]="Can not connect E-Mail server."; + $result[1]="Cannot connect e-mail server."; return $result; } $result[0]=true; - $result[1]="E-Mail address '$email' appears to be valid."; + $result[1]="E-mail address '$email' appears to be valid."; return $result; } // end of function Modified: trunk/lib/plugin/Transclude.php =================================================================== --- trunk/lib/plugin/Transclude.php 2010-12-20 09:32:36 UTC (rev 7786) +++ trunk/lib/plugin/Transclude.php 2010-12-20 12:37:25 UTC (rev 7787) @@ -143,7 +143,7 @@ frame.height = content.height + 2 * frame.marginHeight; } catch (e) { - // Can not get content.height unless transcluded doc + // Cannot get content.height unless transcluded doc // is from the same server... return; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |