Skip to content

Commit 03607b0

Browse files
authored
Merge pull request #125 from dotkernel/fix-broken-links
Fixed broken links
2 parents fe07e1d + 30c9d48 commit 03607b0

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

public/md-articles/best-practice/why-use-current-timestamp-on-a-field-that-record-date-time.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ DEFAULT and ON UPDATE clauses can be used together or separately, depending on y
4545
- With a constant `DEFAULT` value, the column has the given default and is not automatically initialized to the current timestamp.
4646
If the column also has an `ON UPDATE CURRENT_TIMESTAMP` clause, it is automatically updated; otherwise, it has a constant default and is not automatically updated.
4747

48-
For more details, check out the [MySQL Manual](https://dev.mysql.com/doc/refman/8.0/en/timestamp.html).
48+
For more details, check out the [MySQL Manual](https://dev.mysql.com/doc/refman/9.7/en/datetime.html).
4949

5050
Note: only one timestamp field can be `DEFAULT CURRENT_TIMESTAMP` in a table.
5151

public/md-articles/licensing/mit-versus-lgpl-in-practice-dotkernel-case.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Dotkernel will not include the package in its applications by default while it l
6262

6363
## Resources
6464

65-
- [LGPL v3 license](https://www.gnu.org/licenses/lgpl-3.0.en.html)
65+
- [LGPL v3 license](https://opensource.org/license/lgpl-3-0)
6666
- [MIT license](https://opensource.org/license/mit)
6767
- [matomo/device-detector](https://github.com/matomo-org/device-detector)
6868
- [dotkernel/dot-user-agent-sniffer](https://github.com/dotkernel/dot-user-agent-sniffer)

public/md-pages/wsl2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Development environment · AlmaLinux 10 · WSL2
1212
Dotkernel's local environment runs AlmaLinux 10 - inside WSL 2 on Windows, or on bare metal with no WSL at all.
1313
One Ansible playbook installs PHP, Apache, MariaDB, Composer, Node.js and phpMyAdmin, and every project gets its own `*.localhost` virtualhost without touching a hosts file.
1414

15-
- [Read the docs](https://docs.dotkernel.org/development/v2/)
15+
- [Read the docs](https://docs.dotkernel.org/development/v2/terminal/)
1616
- [View on GitHub](https://github.com/dotkernel/development/tree/alma-linux-10)
1717

1818
| | |

src/App/src/Fixture/articles_cleaned.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2086,7 +2086,7 @@
20862086
"post_date": "2022-07-27 09:11:49",
20872087
"post_status": "publish",
20882088
"author": {
2089-
"display_name": "kakapiciu",
2089+
"display_name": "SergiuB",
20902090
"github": "kakapiciu"
20912091
},
20922092
"isObsolete": false,
@@ -2100,7 +2100,7 @@
21002100
"post_date": "2023-03-29 10:59:39",
21012101
"post_status": "publish",
21022102
"author": {
2103-
"display_name": "kakapiciu",
2103+
"display_name": "SergiuB",
21042104
"github": "kakapiciu"
21052105
},
21062106
"isObsolete": false,
@@ -2555,7 +2555,7 @@
25552555
"post_date": "2022-11-07 10:37:56",
25562556
"post_status": "publish",
25572557
"author": {
2558-
"display_name": "kakapiciu",
2558+
"display_name": "SergiuB",
25592559
"github": "kakapiciu"
25602560
},
25612561
"isObsolete": false,

src/Blog/templates/page/blog-resource/best-practice/why-use-current-timestamp-on-a-field-that-record-date-time.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ CURRENT_TIMESTAMP is also a solution for  <em>updating </em>date and time field
1616
<li>With no <code>DEFAULT</code> clause and with an <code>ON UPDATE CURRENT_TIMESTAMP</code> clause, the column has a default of 0 and is automatically updated.</li>
1717
<li>With a constant <code>DEFAULT</code> value, the column has the given default and is not automatically initialized to the current timestamp. If the column also has an <code>ON UPDATE CURRENT_TIMESTAMP</code> clause, it is automatically updated; otherwise, it has a constant default and is not automatically updated.</li>
1818
</ul>
19-
For more details check out <a href="https://dev.mysql.com/doc/refman/8.0/en/timestamp.html">MySQL Manual</a>
19+
For more details check out <a href="https://dev.mysql.com/doc/refman/9.7/en/datetime.html">MySQL Manual</a>
2020

2121
<strong>Note*:</strong> Only one timestamp field can be <code>DEFAULT CURRENT_TIMESTAMP</code> in a table.
2222

src/Page/templates/page/wsl2.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
phpMyAdmin, and every project gets its own <code>*.localhost</code> virtualhost without touching a hosts file.
5353
</p>
5454
<div class="hero-ctas">
55-
<a class="btn btn-primary" href="https://docs.dotkernel.org/development/v2/" target="_blank" rel="noopener">
55+
<a class="btn btn-primary" href="https://docs.dotkernel.org/development/v2/terminal/" target="_blank" rel="noopener">
5656
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"/><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"/></svg>
5757
Read the docs
5858
</a>

0 commit comments

Comments
 (0)