]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
trac31 pg support, fixing 2tu typo, set ur1.ca as default service
authormillette <millette@controlyourself.ca>
Thu, 13 Nov 2008 15:27:18 +0000 (10:27 -0500)
committermillette <millette@controlyourself.ca>
Thu, 13 Nov 2008 15:27:18 +0000 (10:27 -0500)
darcs-hash:20081113152718-099f7-42b60d02395f016c54c5f3c301f9dbe987c1283f.gz

actions/othersettings.php
db/laconica.sql
db/laconica_pg.sql
lib/util.php

index d4a27db200c230945dc612f837a619973d7f7b1c..9f1ad99497b864f71f2ff92918e52d7c26821445 100644 (file)
@@ -42,8 +42,8 @@ class OthersettingsAction extends SettingsAction {
                
                $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',
index d9a6dbf86a5750755f5db38a2489ae5972e1799b..d1e5a76a52cc3bea7350d31aec326bbf48b0ecc1 100644 (file)
@@ -65,7 +65,7 @@ create table user (
     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',
 
index 8d0db9a80a57bcc9de64b2c9c1ebf1a0bd944c46..d027dc0af03ec86b112d14873cf23e233ff8b149 100644 (file)
@@ -63,6 +63,7 @@ create table "user" (
     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
index 14311a71d63b3dd431932c103b6af508db958f80..3b2ee9d87e394ee96c760c62cca7ecb4ea10b159 100644 (file)
@@ -770,7 +770,7 @@ function common_shorten_link($long_url) {
             $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;