diff options
author | Greg Froese <greg.froese@gmail.com> | 2009-05-20 03:56:56 +0000 |
---|---|---|
committer | Greg Froese <greg.froese@gmail.com> | 2009-05-20 03:56:56 +0000 |
commit | 63b91d8aee8e40497d865591d16ee1716e0c9c15 (patch) | |
tree | f7b942ecd204a23fe7c6a76084dfeb18eedad761 /actions | |
parent | b328fd43ed7315fb4189f2408f6a1c10f8a9f3e7 (diff) | |
download | elgg-63b91d8aee8e40497d865591d16ee1716e0c9c15.tar.gz elgg-63b91d8aee8e40497d865591d16ee1716e0c9c15.tar.bz2 |
put watermark masks in proper place
Diffstat (limited to 'actions')
-rw-r--r-- | actions/upload.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/upload.php b/actions/upload.php index d9129aef7..dd50d2381 100644 --- a/actions/upload.php +++ b/actions/upload.php @@ -6,8 +6,8 @@ */
global $CONFIG;
- include dirname(dirname(__FILE__)) . "/lib/resize.php";
- include dirname(dirname(__FILE__)) . "/lib/watermark.php";
+ include_once dirname(dirname(__FILE__)) . "/lib/resize.php";
+ include_once dirname(dirname(__FILE__)) . "/lib/watermark.php";
// Get common variables
$access_id = (int) get_input("access_id");
|