Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Giehl <stefan@matomo.org>2020-01-27 11:23:22 +0300
committerGitHub <noreply@github.com>2020-01-27 11:23:22 +0300
commitf734983e24af1dd2c1b37208bc18d6dea4114815 (patch)
tree01dd8eec55400f4c8e639644181d39f800e3a231
parent9a3077888b43efd3f1c7f9dad0bcb9fea6694284 (diff)
Use correct base branch for creating translation PRs (#15466)
-rw-r--r--libs/README.md2
-rw-r--r--plugins/LanguagesManager/Commands/CreatePull.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/libs/README.md b/libs/README.md
index 99caf96d63..999c5c732c 100644
--- a/libs/README.md
+++ b/libs/README.md
@@ -1,6 +1,6 @@
## Legal notice
-See the [LEGALNOTICE file](https://github.com/matomo-org/matomo/blob/3.x-dev/LEGALNOTICE).
+See the [LEGALNOTICE file](https://github.com/matomo-org/matomo/blob/4.x-dev/LEGALNOTICE).
## Matomo modifications to libs/
diff --git a/plugins/LanguagesManager/Commands/CreatePull.php b/plugins/LanguagesManager/Commands/CreatePull.php
index b5e908d4df..03159542ce 100644
--- a/plugins/LanguagesManager/Commands/CreatePull.php
+++ b/plugins/LanguagesManager/Commands/CreatePull.php
@@ -19,7 +19,7 @@ use Symfony\Component\Console\Output\OutputInterface;
*/
class CreatePull extends TranslationBase
{
- const GIT_BASE_BRANCH = '3.x-dev';
+ const GIT_BASE_BRANCH = '4.x-dev';
protected function configure()
{