We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d016db commit 1a83ca4Copy full SHA for 1a83ca4
2 files changed
lizmap/modules/admin/install/upgrade_permalink.php
@@ -3,9 +3,10 @@
3
class adminModuleUpgrader_permalink extends jInstallerModule
4
{
5
public $targetVersions = array(
6
- '3.10',
+ '3.10.0-rc.1',
7
+ '3.10.0',
8
);
- public $date = '2026-05-13'; // original:'2023-01-06'
9
+ public $date = '2026-05-13';
10
11
public function install()
12
lizmap/modules/lizmap/install/upgrade_permalink.php
@@ -0,0 +1,20 @@
1
+<?php
2
+
+class lizmapModuleUpgrader_permalink extends jInstallerModule
+{
+ public $targetVersions = array(
+ );
+ public $date = '2026-05-26';
+ public function install()
+ {
13
+ // Adding permalink table
14
+ if ($this->firstDbExec()) {
15
+ // Add permalink table
16
+ $this->useDbProfile('jauth');
17
+ $this->execSQLScript('sql/lizpermalink');
18
+ }
19
20
+}
0 commit comments