Skip to content

Commit 4bd26fd

Browse files
committed
Merge branch 'release 1.0.2'
2 parents 040828f + bd0a28d commit 4bd26fd

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Diff for: images/laconica.png

657 Bytes
Loading

Diff for: index.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
define("STORYTLR_VERSION","1.0.1");
2+
define("STORYTLR_VERSION","1.0.2");
33
define("DATABASE_VERSION", "1");
44
define("AUTO_INSTALL", true);
55
define("AUTO_UPGRADE", true);

Diff for: protected/application/plugins/github/models/GithubModel.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function isStoryElement() {
3535
}
3636

3737
public function getServiceURL() {
38-
return 'http://github.com/' . $this->getProperty('username');
38+
return 'https://github.com/' . $this->getProperty('username');
3939
}
4040

4141
public function getServiceDescription() {
@@ -62,7 +62,7 @@ public function importData() {
6262
}
6363

6464
public function updateData() {
65-
$url = 'http://github.com/' . $this->getProperty('username') . '.atom';
65+
$url = 'https//github.com/' . $this->getProperty('username') . '.atom';
6666

6767
$curl = curl_init();
6868
curl_setopt($curl, CURLOPT_URL, $url);

Diff for: protected/install/config.ini.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
db.adapter=PDO_MYSQL
55
db.host=[:mysql_host]
66
db.username=[:mysql_username]
7-
db.password=[:mysql_password]
7+
db.password="[:mysql_password]"
88
db.dbname=[:mysql_database]
99

1010
;Security

0 commit comments

Comments
 (0)