From 83dcd98554ff38af2862bee087c319f32a816c41 Mon Sep 17 00:00:00 2001
From: nanotube <nanotube@820600.no-reply.drupal.org>
Date: Mon, 28 Nov 2011 21:40:53 -0600
Subject: [PATCH 1/2] Issue #1347812: fix documentation references to upload module

---
 core/includes/file.inc             |    2 +-
 core/modules/system/system.api.php |    2 --
 2 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/core/includes/file.inc b/core/includes/file.inc
index 6e6611f..6d5ba09 100644
--- a/core/includes/file.inc
+++ b/core/includes/file.inc
@@ -1138,7 +1138,7 @@ function file_munge_filename($filename, $extensions, $alerts = TRUE) {
 }

 /**
- * Undo the effect of upload_munge_filename().
+ * Undo the effect of file_munge_filename().
  *
  * @param $filename
  *   String with the filename to be unmunged.
diff --git a/core/modules/system/system.api.php b/core/modules/system/system.api.php
index 51f0ecb..188fc00 100644
--- a/core/modules/system/system.api.php
+++ b/core/modules/system/system.api.php
@@ -2207,7 +2207,6 @@ function hook_stream_wrappers_alter(&$wrappers) {
  *   An array of file objects, indexed by fid.
  *
  * @see file_load_multiple()
- * @see upload_file_load()
  */
 function hook_file_load($files) {
   // Add the upload specific data into the file object.
@@ -2332,7 +2331,6 @@ function hook_file_move($file, $source) {
  *   The file that has just been deleted.
  *
  * @see file_delete()
- * @see upload_file_delete()
  */
 function hook_file_delete($file) {
   // Delete all information associated with the file.
--


From 1bfe8dce383a63a18fc47d9ab4cff349bb343abb Mon Sep 17 00:00:00 2001
From: nanotube <nanotube@820600.no-reply.drupal.org>
Date: Fri, 2 Dec 2011 21:25:21 -0600
Subject: [PATCH 2/2] second attempt

---
 core/modules/system/system.api.php |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/core/modules/system/system.api.php b/core/modules/system/system.api.php
index 188fc00..24cb747 100644
--- a/core/modules/system/system.api.php
+++ b/core/modules/system/system.api.php
@@ -2207,6 +2207,7 @@ function hook_stream_wrappers_alter(&$wrappers) {
  *   An array of file objects, indexed by fid.
  *
  * @see file_load_multiple()
+ * @see file_load()
  */
 function hook_file_load($files) {
   // Add the upload specific data into the file object.
--

