Fix internal links
authorMatthias Schmidt <gravatronics@live.com>
Sun, 27 Dec 2020 16:02:45 +0000 (17:02 +0100)
committerMatthias Schmidt <gravatronics@live.com>
Sun, 27 Dec 2020 16:02:45 +0000 (17:02 +0100)
docs/package_pip.md
docs/php_database-access.md

index d9b74af0824ec476d0c4ea0702d4877aff8900c1..d3e6a113245a2332fb943270e0b54a85d7bcbbf1 100644 (file)
@@ -30,7 +30,7 @@ Package Installation Plugins (PIPs) are interfaces to deploy and edit content as
 | [pip](package_pip_pip.md) | Package Installation Plugins |
 | [script](package_pip_script.md) | Execute arbitrary PHP code during installation, update and uninstallation |
 | [smiley](package_pip_smiley.md) | Smileys |
-| [sql](package_pip_sql.md) | Execute SQL instructions using a MySQL-flavored syntax (also see [database PHP API.md)(package_database-php-api.md)) |
+| [sql](package_pip_sql.md) | Execute SQL instructions using a MySQL-flavored syntax (also see [database PHP API](package_database-php-api.md)) |
 | [style](package_pip_style.md) | Style |
 | [template](package_pip_template.md) | Frontend templates |
 | [templateListener](package_pip_template-listener.md) | Embed template code into templates without altering the original |
index 28a482d078114c14665712961a907a3fdace10a6..6db0e984bedb084f21750a61d6a2369b02ee4b32 100644 (file)
@@ -1,6 +1,6 @@
 # Database Access
 
-[Database Objects](php_database-objects.md) provide a convenient and object-oriented approach to work with the database, but there can be use-cases that require raw access including writing methods for model classes. This section assumes that you have either used [prepared statements.md)(https://en.wikipedia.org/wiki/Prepared_statement) before or at least understand how it works.
+[Database Objects](php_database-objects.md) provide a convenient and object-oriented approach to work with the database, but there can be use-cases that require raw access including writing methods for model classes. This section assumes that you have either used [prepared statements](https://en.wikipedia.org/wiki/Prepared_statement) before or at least understand how it works.
 
 ## The PreparedStatement Object