diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index ca7163b..f9dd2b7 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -259,7 +259,7 @@ define('DRUPAL_PHP_FUNCTION_PATTERN', '[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*' * error, and $var will be populated with the contents of $object['foo'], but * that data will be passed by value, not reference. For more information on * the PHP limitation, see the note in the official PHP documentation at· - * http://php.net/manual/arrayaccess.offsetget.php on + * http://php.net/manual/en/arrayaccess.offsetget.php on * ArrayAccess::offsetGet(). * * By default, the class accounts for caches where calling functions might diff --git a/includes/database/database.inc b/includes/database/database.inc index 117a2a8..6efe298 100644 --- a/includes/database/database.inc +++ b/includes/database/database.inc @@ -179,7 +179,7 @@ * concrete implementation of it to support special handling required by that * database. * - * @see http://php.net/manual/book.pdo.php + * @see http://php.net/manual/en/book.pdo.php */ abstract class DatabaseConnection extends PDO { @@ -194,7 +194,7 @@ abstract class DatabaseConnection extends PDO { /** * The key representing this connection. - * + * * The key is a unique string which identifies a database connection. A * connection can be a single server or a cluster of master and slaves (use * target to pick between master and slave). @@ -1954,7 +1954,7 @@ interface DatabaseStatementInterface extends Traversable { /** * Sets the default fetch mode for this statement. * - * See http://php.net/manual/pdo.constants.php for the definition of the + * See http://php.net/manual/en/pdo.constants.php for the definition of the * constants used. * * @param $mode @@ -1973,7 +1973,7 @@ interface DatabaseStatementInterface extends Traversable { /** * Fetches the next row from a result set. * - * See http://php.net/manual/pdo.constants.php for the definition of the + * See http://php.net/manual/en/pdo.constants.php for the definition of the * constants used. * * @param $mode @@ -2097,7 +2097,7 @@ interface DatabaseStatementInterface extends Traversable { * driver needs to set a custom statement class, it may do so in its * constructor. * - * @see http://php.net/pdostatement + * @see http://us.php.net/pdostatement */ class DatabaseStatementBase extends PDOStatement implements DatabaseStatementInterface { diff --git a/includes/stream_wrappers.inc b/includes/stream_wrappers.inc index 263432f..2af8c9e 100644 --- a/includes/stream_wrappers.inc +++ b/includes/stream_wrappers.inc @@ -93,7 +93,7 @@ define('STREAM_WRAPPERS_LOCAL_NORMAL', STREAM_WRAPPERS_LOCAL | STREAM_WRAPPERS_N /** * Generic PHP stream wrapper interface. * - * @see http://www.php.net/manual/class.streamwrapper.php + * @see http://www.php.net/manual/en/class.streamwrapper.php */ interface StreamWrapperInterface { public function stream_open($uri, $mode, $options, &$opened_url); @@ -401,7 +401,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface * @return * Returns TRUE if file was opened successfully. * - * @see http://php.net/manual/streamwrapper.stream-open.php + * @see http://php.net/manual/en/streamwrapper.stream-open.php */ public function stream_open($uri, $mode, $options, &$opened_path) { $this->uri = $uri; @@ -429,7 +429,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface * @return * Always returns TRUE at the present time. * - * @see http://php.net/manual/streamwrapper.stream-lock.php + * @see http://php.net/manual/en/streamwrapper.stream-lock.php */ public function stream_lock($operation) { if (in_array($operation, array(LOCK_SH, LOCK_EX, LOCK_UN, LOCK_NB))) { @@ -448,7 +448,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface * @return * The string that was read, or FALSE in case of an error. * - * @see http://php.net/manual/streamwrapper.stream-read.php + * @see http://php.net/manual/en/streamwrapper.stream-read.php */ public function stream_read($count) { return fread($this->handle, $count); @@ -463,7 +463,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface * @return * The number of bytes written (integer). * - * @see http://php.net/manual/streamwrapper.stream-write.php + * @see http://php.net/manual/en/streamwrapper.stream-write.php */ public function stream_write($data) { return fwrite($this->handle, $data); @@ -475,7 +475,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface * @return * TRUE if end-of-file has been reached. * - * @see http://php.net/manual/streamwrapper.stream-eof.php + * @see http://php.net/manual/en/streamwrapper.stream-eof.php */ public function stream_eof() { return feof($this->handle); @@ -492,7 +492,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface * @return * TRUE on success. * - * @see http://php.net/manual/streamwrapper.stream-seek.php + * @see http://php.net/manual/en/streamwrapper.stream-seek.php */ public function stream_seek($offset, $whence) { // fseek returns 0 on success and -1 on a failure. @@ -506,7 +506,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface * @return * TRUE if data was successfully stored (or there was no data to store). * - * @see http://php.net/manual/streamwrapper.stream-flush.php + * @see http://php.net/manual/en/streamwrapper.stream-flush.php */ public function stream_flush() { return fflush($this->handle); @@ -518,7 +518,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface * @return * The current offset in bytes from the beginning of file. * - * @see http://php.net/manual/streamwrapper.stream-tell.php + * @see http://php.net/manual/en/streamwrapper.stream-tell.php */ public function stream_tell() { return ftell($this->handle); @@ -531,7 +531,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface * An array with file status, or FALSE in case of an error - see fstat() * for a description of this array. * - * @see http://php.net/manual/streamwrapper.stream-stat.php + * @see http://php.net/manual/en/streamwrapper.stream-stat.php */ public function stream_stat() { return fstat($this->handle); @@ -543,7 +543,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface * @return * TRUE if stream was successfully closed. * - * @see http://php.net/manual/streamwrapper.stream-close.php + * @see http://php.net/manual/en/streamwrapper.stream-close.php */ public function stream_close() { return fclose($this->handle); @@ -558,7 +558,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface * @return * TRUE if resource was successfully deleted. * - * @see http://php.net/manual/streamwrapper.unlink.php + * @see http://php.net/manual/en/streamwrapper.unlink.php */ public function unlink($uri) { $this->uri = $uri; @@ -576,7 +576,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface * @return * TRUE if file was successfully renamed. * - * @see http://php.net/manual/streamwrapper.rename.php + * @see http://php.net/manual/en/streamwrapper.rename.php */ public function rename($from_uri, $to_uri) { return rename($this->getLocalPath($from_uri), $this->getLocalPath($to_uri)); @@ -622,7 +622,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface * @return * TRUE if directory was successfully created. * - * @see http://php.net/manual/streamwrapper.mkdir.php + * @see http://php.net/manual/en/streamwrapper.mkdir.php */ public function mkdir($uri, $mode, $options) { $this->uri = $uri; @@ -654,7 +654,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface * @return * TRUE if directory was successfully removed. * - * @see http://php.net/manual/streamwrapper.rmdir.php + * @see http://php.net/manual/en/streamwrapper.rmdir.php */ public function rmdir($uri, $options) { $this->uri = $uri; @@ -678,7 +678,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface * An array with file status, or FALSE in case of an error - see fstat() * for a description of this array. * - * @see http://php.net/manual/streamwrapper.url-stat.php + * @see http://php.net/manual/en/streamwrapper.url-stat.php */ public function url_stat($uri, $flags) { $this->uri = $uri; @@ -704,7 +704,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface * @return * TRUE on success. * - * @see http://php.net/manual/streamwrapper.dir-opendir.php + * @see http://php.net/manual/en/streamwrapper.dir-opendir.php */ public function dir_opendir($uri, $options) { $this->uri = $uri; @@ -719,7 +719,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface * @return * The next filename, or FALSE if there are no more files in the directory. * - * @see http://php.net/manual/streamwrapper.dir-readdir.php + * @see http://php.net/manual/en/streamwrapper.dir-readdir.php */ public function dir_readdir() { return readdir($this->handle); @@ -731,7 +731,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface * @return * TRUE on success. * - * @see http://php.net/manual/streamwrapper.dir-rewinddir.php + * @see http://php.net/manual/en/streamwrapper.dir-rewinddir.php */ public function dir_rewinddir() { rewinddir($this->handle); @@ -747,7 +747,7 @@ abstract class DrupalLocalStreamWrapper implements DrupalStreamWrapperInterface * @return * TRUE on success. * - * @see http://php.net/manual/streamwrapper.dir-closedir.php + * @see http://php.net/manual/en/streamwrapper.dir-closedir.php */ public function dir_closedir() { closedir($this->handle); diff --git a/modules/system/system.mail.inc b/modules/system/system.mail.inc index 443e574..4e75440 100644 --- a/modules/system/system.mail.inc +++ b/modules/system/system.mail.inc @@ -31,7 +31,7 @@ class DefaultMailSystem implements MailSystemInterface { /** * Send an e-mail message, using Drupal variables and default settings. * - * @see http://php.net/manual/function.mail.php + * @see http://php.net/manual/en/function.mail.php * @see drupal_mail() * * @param $message diff --git a/sites/default/default.settings.php b/sites/default/default.settings.php index 03916ab..87eaabb 100644 --- a/sites/default/default.settings.php +++ b/sites/default/default.settings.php @@ -261,7 +261,7 @@ $drupal_hash_salt = ''; * * To see what PHP settings are possible, including whether they can be set at * runtime (by using ini_set()), read the PHP documentation: - * http://www.php.net/manual/ini.list.php + * http://www.php.net/manual/en/ini.list.php * See drupal_initialize_variables() in includes/bootstrap.inc for required * runtime settings and the .htaccess file for non-runtime settings. Settings * defined there should not be duplicated here so as to avoid conflict issues. @@ -297,7 +297,7 @@ ini_set('session.cookie_lifetime', 2000000); * output filter may not have sufficient memory to process it. If you * experience this issue, you may wish to uncomment the following two lines * and increase the limits of these variables. For more information, see - * http://php.net/manual/pcre.configuration.php. + * http://php.net/manual/en/pcre.configuration.php. */ # ini_set('pcre.backtrack_limit', 200000); # ini_set('pcre.recursion_limit', 200000);