Skip to content

Commit 6739cf6

Browse files
committed
Updated setting for outgoing messages
1 parent 6f34478 commit 6739cf6

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

system/extensions/update-available.ini

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -121,14 +121,14 @@ Status: available
121121
system/workers/chinese.php: chinese.php, create, update
122122

123123
Extension: Contact
124-
Version: 0.9.2
124+
Version: 0.9.3
125125
Description: Email contact page.
126126
Developer: Anna Svensson
127127
Tag: feature
128128
DownloadUrl: https://github.com/annaesvensson/yellow-contact/archive/refs/heads/main.zip
129129
DocumentationUrl: https://github.com/annaesvensson/yellow-contact
130130
DocumentationLanguage: en, de, sv
131-
Published: 2026-03-03 23:09:29
131+
Published: 2026-03-05 22:56:24
132132
Status: available
133133
system/workers/contact.php: contact.php, create, update
134134
system/layouts/contact.html: contact.html, create, update, careful
@@ -213,14 +213,14 @@ Status: available
213213
system/workers/dutch.php: dutch.php, create, update
214214

215215
Extension: Edit
216-
Version: 0.9.15
216+
Version: 0.9.16
217217
Description: Edit your website in a web browser.
218218
Developer: Anna Svensson
219219
Tag: feature
220220
DownloadUrl: https://github.com/annaesvensson/yellow-edit/archive/refs/heads/main.zip
221221
DocumentationUrl: https://github.com/annaesvensson/yellow-edit
222222
DocumentationLanguage: en, de, sv
223-
Published: 2026-02-17 16:02:00
223+
Published: 2026-03-05 22:53:17
224224
Status: available
225225
system/workers/edit.php: edit.php, create, update
226226
system/workers/edit.css: edit.css, create, update
@@ -764,14 +764,14 @@ Status: available
764764
system/workers/turkish.php: turkish.php, create, update
765765

766766
Extension: Update
767-
Version: 0.9.9
767+
Version: 0.9.10
768768
Description: Keep your extensions up to date.
769769
Developer: Anna Svensson
770770
Tag: feature
771771
DownloadUrl: https://github.com/annaesvensson/yellow-update/archive/refs/heads/main.zip
772772
DocumentationUrl: https://github.com/annaesvensson/yellow-update
773773
DocumentationLanguage: en, de, sv
774-
Published: 2026-02-17 16:14:10
774+
Published: 2026-03-05 23:06:13
775775
Status: available
776776
system/workers/update.php: update.php, create, update
777777
system/workers/updatepatch.bin: updatepatch.php, create, additional

system/extensions/update-installed.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ system/layouts/navigation.html: navigation.html, create, update, careful
2020
system/layouts/pagination.html: pagination.html, create, update, careful
2121

2222
Extension: Edit
23-
Version: 0.9.15
23+
Version: 0.9.16
2424
Description: Edit your website in a web browser.
2525
Developer: Anna Svensson
2626
Tag: feature
2727
DownloadUrl: https://github.com/annaesvensson/yellow-edit/archive/refs/heads/main.zip
2828
DocumentationUrl: https://github.com/annaesvensson/yellow-edit
2929
DocumentationLanguage: en, de, sv
30-
Published: 2026-02-17 16:02:00
30+
Published: 2026-03-05 22:53:17
3131
Status: available
3232
system/workers/edit.php: edit.php, create, update
3333
system/workers/edit.css: edit.css, create, update
@@ -128,14 +128,14 @@ system/themes/stockholm-opensans-light.woff: stockholm-opensans-light.woff, crea
128128
system/themes/stockholm-opensans-regular.woff: stockholm-opensans-regular.woff, create, update, careful
129129

130130
Extension: Update
131-
Version: 0.9.9
131+
Version: 0.9.10
132132
Description: Keep your extensions up to date.
133133
Developer: Anna Svensson
134134
Tag: feature
135135
DownloadUrl: https://github.com/annaesvensson/yellow-update/archive/refs/heads/main.zip
136136
DocumentationUrl: https://github.com/annaesvensson/yellow-update
137137
DocumentationLanguage: en, de, sv
138-
Published: 2026-02-17 16:14:10
138+
Published: 2026-03-05 23:06:13
139139
Status: available
140140
system/workers/update.php: update.php, create, update
141141
system/workers/updatepatch.bin: updatepatch.php, create, additional

system/workers/edit.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Edit extension, https://github.com/annaesvensson/yellow-edit
33

44
class YellowEdit {
5-
const VERSION = "0.9.15";
5+
const VERSION = "0.9.16";
66
public $yellow; // access to API
77
public $response; // web response
88
public $merge; // text merge
@@ -13,7 +13,6 @@ public function onLoad($yellow) {
1313
$this->yellow = $yellow;
1414
$this->response = new YellowEditResponse($yellow);
1515
$this->merge = new YellowEditMerge($yellow);
16-
$this->yellow->system->setDefault("editSiteEmail", "noreply");
1716
$this->yellow->system->setDefault("editLocation", "/edit/");
1817
$this->yellow->system->setDefault("editUploadNewLocation", "/media/@group/@filename");
1918
$this->yellow->system->setDefault("editUploadExtensions", ".gif, .jpeg, .jpg, .mp3, .mp4, .ogg, .pdf, .png, .svg, .zip");
@@ -1607,7 +1606,7 @@ public function sendMail($scheme, $address, $base, $email, $action) {
16071606
$message = preg_replace("/@username/i", $userName, $message);
16081607
$message = preg_replace("/@userlanguage/i", $userLanguage, $message);
16091608
$sitename = $this->yellow->system->get("sitename");
1610-
$siteEmail = $this->yellow->system->get("editSiteEmail");
1609+
$siteEmail = $this->yellow->system->get("from");
16111610
$subject = $this->yellow->language->getText("{$prefix}Subject", $userLanguage);
16121611
$footer = $this->yellow->language->getText("editMailFooter", $userLanguage);
16131612
$footer = str_replace("\\n", "\r\n", $footer);

system/workers/update.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Update extension, https://github.com/annaesvensson/yellow-update
33

44
class YellowUpdate {
5-
const VERSION = "0.9.9";
5+
const VERSION = "0.9.10";
66
const PRIORITY = "2";
77
public $yellow; // access to API
88
public $extensions; // number of extensions

0 commit comments

Comments
 (0)