diff options
author | Bharat Mediratta <bharat@menalto.com> | 2011-04-02 15:36:50 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2011-04-02 15:36:50 -0700 |
commit | 9d8eef143d781c36870532b48599b3da1ad9dd44 (patch) | |
tree | 6ea9916e04f4a4b560d7d1fe4beb3cf938348531 /modules/server_add/controllers/server_add.php | |
parent | 073650192c094080b689cd8ee202554b992223dc (diff) |
Fix an outdated reference to $entry->file which went away in v4 of the
module. Fixes #1669.
Diffstat (limited to 'modules/server_add/controllers/server_add.php')
-rw-r--r-- | modules/server_add/controllers/server_add.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/server_add/controllers/server_add.php b/modules/server_add/controllers/server_add.php index 2afa93a7..ea8907f4 100644 --- a/modules/server_add/controllers/server_add.php +++ b/modules/server_add/controllers/server_add.php @@ -286,7 +286,7 @@ class Server_Add_Controller extends Admin_Controller { } catch (Exception $e) { // This can happen if a photo file is invalid, like a BMP masquerading as a .jpg $entry->item_id = 0; - $task->log("Skipping invalid file: {$entry->file}"); + $task->log("Skipping invalid file: {$entry->path}"); } } |