summaryrefslogtreecommitdiff
path: root/docs/programmers/plugins
diff options
context:
space:
mode:
authorSimon Wisselink <s.wisselink@iwink.nl>2023-02-03 22:31:59 +0100
committerSimon Wisselink <s.wisselink@iwink.nl>2023-02-03 22:31:59 +0100
commit51ed0d6791cfedbdf2492603d226618133154d70 (patch)
treeff1aa263c5b1ea7614cf910c5232a049b145a272 /docs/programmers/plugins
parentc94d3ddafa8e41e73f127af1959b4715db021d1e (diff)
downloadsmarty-51ed0d6791cfedbdf2492603d226618133154d70.tar.gz
smarty-51ed0d6791cfedbdf2492603d226618133154d70.tar.bz2
smarty-51ed0d6791cfedbdf2492603d226618133154d70.zip
fixes to docs
Diffstat (limited to 'docs/programmers/plugins')
-rw-r--r--docs/programmers/plugins/plugins-block-functions.md2
-rw-r--r--docs/programmers/plugins/plugins-modifiers.md2
-rw-r--r--docs/programmers/plugins/plugins-naming-conventions.md2
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/programmers/plugins/plugins-block-functions.md b/docs/programmers/plugins/plugins-block-functions.md
index 47281fef..0e11c078 100644
--- a/docs/programmers/plugins/plugins-block-functions.md
+++ b/docs/programmers/plugins/plugins-block-functions.md
@@ -62,7 +62,7 @@ cannot have both custom function `{func}` and block function
If you have nested block functions, it\'s possible to find out what the
parent block function is by accessing `$smarty->_tag_stack` variable.
-Just do a [`var_dump()`](&url.php-manual;var_dump) on it and the
+Just do a [`var_dump()`](https://www.php.net/var_dump) on it and the
structure should be apparent.
diff --git a/docs/programmers/plugins/plugins-modifiers.md b/docs/programmers/plugins/plugins-modifiers.md
index b089821a..a4e99daa 100644
--- a/docs/programmers/plugins/plugins-modifiers.md
+++ b/docs/programmers/plugins/plugins-modifiers.md
@@ -25,7 +25,7 @@ The first parameter to the modifier plugin is the value on which the
modifier is to operate. The rest of the parameters are optional,
depending on what kind of operation is to be performed.
-The modifier has to [return](&url.php-manual;return) the result of its
+The modifier has to [return](https://www.php.net/return) the result of its
processing.
This plugin basically aliases one of the built-in PHP functions. It does
diff --git a/docs/programmers/plugins/plugins-naming-conventions.md b/docs/programmers/plugins/plugins-naming-conventions.md
index 28bbcfde..15bc2601 100644
--- a/docs/programmers/plugins/plugins-naming-conventions.md
+++ b/docs/programmers/plugins/plugins-naming-conventions.md
@@ -32,7 +32,7 @@ in order to be located by Smarty.
- And `name` should be a valid identifier; letters, numbers, and
underscores only, see [php
- variables](&url.php-manual;language.variables).
+ variables](https://www.php.net/language.variables).
- Some examples: `function.html_select_date.php`, `resource.db.php`,
`modifier.spacify.php`.