Skip to content

Commit

Permalink
added source of all external libraries used
Browse files Browse the repository at this point in the history
  • Loading branch information
bricel committed Dec 29, 2010
1 parent e69258c commit d2d1cb3
Show file tree
Hide file tree
Showing 571 changed files with 104,908 additions and 1,737 deletions.
4 changes: 2 additions & 2 deletions Class/Curl.cs
Expand Up @@ -117,15 +117,15 @@ public bool DownloadFile(string httpPath, string savePath)
/// <param name="localPath">Local file location</param> /// <param name="localPath">Local file location</param>
/// <returns></returns> /// <returns></returns>
public int FileUpload(string localPath) public int FileUpload(string localPath)
{ {
return FileUpload(localPath, ""); return FileUpload(localPath, "");
} }
/// <summary> /// <summary>
/// Upload a file to Drupal using the form-file module and CURL /// Upload a file to Drupal using the form-file module and CURL
/// </summary> /// </summary>
/// <param name="localPath">Local file location</param> /// <param name="localPath">Local file location</param>
/// <param name="serverDirectory">Save to a specific directory in drupal</param> /// <param name="serverDirectory">Save to a specific directory in drupal</param>
/// <returns> File ID or -1 if failed to upload</returns> /// <returns> File ID or -1 if failed to upload</returns>
public int FileUpload(string localPath, string serverDirectory) public int FileUpload(string localPath, string serverDirectory)
{ {
// Use file form module // Use file form module
Expand Down

0 comments on commit d2d1cb3

Please sign in to comment.