[Openupload-svn-update] SF.net SVN: openupload:[149] trunk/lib/modules/default/files.inc.php
Status: Beta
Brought to you by:
tsdogs
|
From: <ts...@us...> - 2008-11-17 18:07:14
|
Revision: 149
http://openupload.svn.sourceforge.net/openupload/?rev=149&view=rev
Author: tsdogs
Date: 2008-11-17 18:07:11 +0000 (Mon, 17 Nov 2008)
Log Message:
-----------
Fix typos
Modified Paths:
--------------
trunk/lib/modules/default/files.inc.php
Modified: trunk/lib/modules/default/files.inc.php
===================================================================
--- trunk/lib/modules/default/files.inc.php 2008-11-14 19:16:41 UTC (rev 148)
+++ trunk/lib/modules/default/files.inc.php 2008-11-17 18:07:11 UTC (rev 149)
@@ -74,7 +74,7 @@
case 7: app()->error(tr('Can\'t write to temporary diretory!')); break;
case 8: app()->error(tr('Upload blocked by extension!')); break;
default:
- app()->error(tr('Upload failed for Unknonw error code: %1',$_FILES['upload']['error'])); break;
+ app()->error(tr('Upload failed for Unknown error code: %1',$_FILES['upload']['error'])); break;
}
$this->nextStep(1);
} else if ($_FILES['upload']['size']>app()->user->info('max_upload_size')) {
@@ -229,11 +229,11 @@
} else if (isset($_SESSION['user']['d'][0]['id'])) {
$id = $_SESSION['user']['d'][0]['id'];
}
- /* check if download exsists, and what are the properties */
+ /* check if download exists, and what are the properties */
if ($id != '') {
$finfo = $this->loadFile($id);
if ($finfo[0]['id']!=$id) {
- app()->error(tr('Requested file does not exsist!'));
+ app()->error(tr('Requested file does not exist!'));
$this->prevStep();
} else {
$_SESSION['user']['d']=$finfo;
@@ -323,7 +323,7 @@
} else if (isset($_SESSION['user']['r']['id'])) {
$id = $_SESSION['user']['r']['id'];
}
- /* check if download exsists, and what are the properties */
+ /* check if download exists, and what are the properties */
if ($id != '') {
$finfo = $this->loadFile($id);
if ($finfo['id']!=$id) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|