Archived
1
0

spelling fixes

This commit is contained in:
klemens
2017-04-06 22:26:07 +02:00
parent 4d8f04d406
commit 5a95db314a
38 changed files with 88 additions and 88 deletions
@@ -1073,7 +1073,7 @@ class serendipity_event_spartacus extends serendipity_event
} else {
$paths = preg_split('@/@', $basedir.$dir,-1,PREG_SPLIT_NO_EMPTY);
foreach ($paths as $path) {
// trying to change directory, if not succesfull, it means
// trying to change directory, if not successful, it means
// the directory does not exist and we must create it
if (!ftp_chdir($conn_id,$path)) {
if (!ftp_mkdir($conn_id,$path)) {
@@ -353,7 +353,7 @@ class TextileBag
/**
* Class to allow contruction of HTML tags on conversion of an object to a string
* Class to allow construction of HTML tags on conversion of an object to a string
*
* Example usage...
*
@@ -761,7 +761,7 @@ class Textile
* Gets a symbol definitions.
*
* This method can be used to get a symbol definition, or an
* array containg the full symbol table.
* array containing the full symbol table.
*
* @param string|null $name The name of the symbol, or NULL if requesting the symbol table
* @return array|string The symbol table or the requested symbol
@@ -871,7 +871,7 @@ class Textile
$this->prepare($lite, $noimage, $rel);
$this->url_schemes = $this->unrestricted_url_schemes;
// Use of the $encode flag is discouraged. Calling textileEncode() is prefered.
// Use of the $encode flag is discouraged. Calling textileEncode() is preferred.
if ($encode) {
return $this->textileEncode($text);
}
@@ -2721,7 +2721,7 @@ class Textile
/**
* Perfoms typographical glyph replacements within the input textile text.
* Performs typographical glyph replacements within the input textile text.
* The source text is split across HTML-like tags in order to avoid attempting glyph
* replacements within tags.
*
@@ -209,7 +209,7 @@ class serendipity_plugin_comments extends serendipity_plugin
if ($row['comment_url'] != '' && ( ($isTrackBack && ($showurls =='trackbacks' || $showurls =='all') || !$isTrackBack && ($showurls =='comments' || $showurls =='all')))) {
/* Fix invalid cases in protocoll part */
/* Fix invalid cases in protocol part */
$row['comment_url'] = preg_replace('@^http://@i','http://', $row['comment_url']);
$row['comment_url'] = preg_replace('@^https://@i','https://', $row['comment_url']);