Syntax error in documentation (#9145)

just found a little syntax error in the docs, nothing special :)

DO NOT DELETE THIS TEXT

#### Please note

> Please read this information carefully. You can run `./scripts/pre-commit.php` to check your code before submitting.

- [x] Have you followed our [code guidelines?](http://docs.librenms.org/Developing/Code-Guidelines/)

#### Testers

If you would like to test this pull request then please run: `./scripts/github-apply <pr_id>`, i.e `./scripts/github-apply 9145`
This commit is contained in:
lug-gh
2018-09-04 14:04:42 +01:00
committed by Neil Lathwood
parent fe45eacae9
commit 4cba0a5244
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -208,7 +208,7 @@ Note: To use HTML emails you must set HTML email to Yes in the WebUI under Globa
Note: To include Graphs you must enable unauthorized graphs in config.php. Allow_unauth_graphs_cidr is optional, but more secure.
```
$config['allow_unauth_graphs_cidr'] = array(127.0.0.1/32');
$config['allow_unauth_graphs_cidr'] = array('127.0.0.1/32');
$config['allow_unauth_graphs'] = true;
```
+1 -1
View File
@@ -246,7 +246,7 @@ Note: To use HTML emails you must set HTML email to Yes in the WebUI under Globa
Note: To include Graphs you must enable unauthorized graphs in config.php. Allow_unauth_graphs_cidr is optional, but more secure.
```
$config['allow_unauth_graphs_cidr'] = array(127.0.0.1/32');
$config['allow_unauth_graphs_cidr'] = array('127.0.0.1/32');
$config['allow_unauth_graphs'] = true;
```
+1 -1
View File
@@ -274,7 +274,7 @@ $config['auth_ldap_cache_ttl'] = 300;
## View/embedded graphs without being logged into LibreNMS
```php
$config['allow_unauth_graphs_cidr'] = array(127.0.0.1/32');
$config['allow_unauth_graphs_cidr'] = array('127.0.0.1/32');
$config['allow_unauth_graphs'] = true;
```