viewgit/index.php:465 Only variables should be passed by reference [2048]

viewgit/index.php:466 Non-static method GeSHi::get_language_name_from_extension() should not be called statically [2048]

  1.  
  2. using System;
  3.  
  4. namespace Dizzy
  5. {
  6.  
  7. public class FileUpload : FileTransfer
  8. {
  9.  
  10.  
  11. public FileUpload (string filename,
  12. string user,
  13. string password) : base(user, password, filename)
  14. {
  15. // Per il momento non c'รจ niente di realmente utile
  16. // da fare qui.
  17. }
  18.  
  19. public override void Start ()
  20. {
  21. sftp.Upload (this.label);
  22. sftp.Disconnect ();
  23. }
  24.  
  25. }
  26. }
  27.  
  28.