$services = array(
'' => 'None',
- 'ur1.ca' => 'ur1.ca (free)',
- '2tu.ru' => '2tu.ru (free)',
+ 'ur1.ca' => 'ur1.ca (free service)',
+ '2tu.us' => '2tu.us (free service)',
'ptiturl.com' => 'ptiturl.com',
'bit.ly' => 'bit.ly',
'tinyurl.com' => 'tinyurl.com',
smsemail varchar(255) comment 'built from sms and carrier',
uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI',
autosubscribe tinyint default 0 comment 'automatically subscribe to users who subscribe to us',
- urlshorteningservice varchar(50) default 'metamark.net' comment 'service to use for auto-shortening URLs',
+ urlshorteningservice varchar(50) default 'ur1.ca' comment 'service to use for auto-shortening URLs',
created datetime not null comment 'date this record was created',
modified timestamp comment 'date this record was modified',
smsemail varchar(255) /* comment 'built from sms and carrier' */,\r
uri varchar(255) unique /* comment 'universally unique identifier, usually a tag URI' */,\r
autosubscribe integer default 0 /* comment 'automatically subscribe to users who subscribe to us' */,\r
+ urlshorteningservice varchar(50) default 'ur1.ca' /* comment 'service to use for auto-shortening URLs' */,\r
created timestamp not null /* comment 'date this record was created' */,\r
modified timestamp /* comment 'date this record was modified' */\r
\r
$short_url = $short_url_service->shorten($long_url);
break;
- case '2tu.ru':
+ case '2tu.us':
$short_url_service = new TightUrl;
$short_url = $short_url_service->shorten($long_url);
break;