Changeset 3388


Ignore:
Timestamp:
Jun 2, 2009, 4:07:20 PM (15 years ago)
Author:
ronosman
Message:

Feature 1021 added : automatically add "http://" to the site url if it does not start with "http".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/pLoader/trunk/src/Uploader/GUI/wxApp.pm

    r3386 r3388  
    590590
    591591    $self->_init_branding;
    592 
     592   
     593    if ($self->site_url !~ /^http:/){
     594        $self->site_url(
     595            sprintf(
     596                "http://%s",
     597                $self->site_url
     598            )
     599        );     
     600    }
    593601
    594602    $self->pwg(
Note: See TracChangeset for help on using the changeset viewer.