Skip to content

Commit ac91c18

Browse files
committed
fix: update readme file and more changes not directly related to the PR main goal.
1 parent 8e5626b commit ac91c18

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ by signing off your contributions, you acknowledge that you can and do license y
2525
* It is enough to include in your commit comment "Signed-off by: " followed by your name and email address (for example: `Signed-off-by: Your Name <youremail@example.com>`)
2626
* an easy way to do so is to define an alias for the git commit command, which includes -s switch (reference: [How to create Git aliases](https://git.wiki.kernel.org/index.php/Aliases))
2727
* send a pull request to us.
28+
* SMF uses third party libraries via composer, if you want to run a local version, please [install composer first](https://getcomposer.org)
29+
and run `composer install`
2830

2931
## How to submit a pull request:
3032
* If you want to send a bug fix for version 3.0, send it to the branch ***release-3.0***

Sources/Config.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -927,9 +927,6 @@ public static function set(array $settings): void
927927
self::$sourcedir = self::$boarddir . '/Sources';
928928
}
929929

930-
// As of 3.0, this is no longer changeable.
931-
self::$tasksdir = self::$sourcedir . '/Tasks';
932-
933930
self::$vendordir = self::$boarddir . '/vendor';
934931

935932
if ((empty(self::$packagesdir) || !is_dir(realpath(self::$packagesdir))) && is_dir(self::$boarddir . '/Packages')) {

Sources/Unicode/Currencies.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1111,8 +1111,8 @@ function country_currencies(): array
11111111
'LRD',
11121112
],
11131113
'LS' => [
1114-
'LSL',
11151114
'ZAR',
1115+
'LSL',
11161116
],
11171117
'LT' => [
11181118
'EUR',

index.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
* 1. Define some constants we need.
3232
*/
3333

34-
use SMF\Config;
3534

3635
if (!defined('SMF')) {
3736
define('SMF', 1);

0 commit comments

Comments
 (0)