diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-04-17 18:34:18 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-04-17 18:34:18 +0400 |
| commit | a42c55f02b7e313ab61bf826794d0888f2dceae1 (patch) | |
| tree | 7946572f0e45015a0b54830bd1296be548584ed8 /plugins/example/init.php | |
| parent | 72ff0137298f60970c664f0be24327b120bf4ac7 (diff) | |
fix blank character after opening bracket in function calls
Diffstat (limited to 'plugins/example/init.php')
| -rw-r--r-- | plugins/example/init.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/example/init.php b/plugins/example/init.php index 8deee84b4..8f4e8abf4 100644 --- a/plugins/example/init.php +++ b/plugins/example/init.php @@ -19,7 +19,7 @@ class Example extends Plugin { } function save() { - $example_value = db_escape_string( $_POST["example_value"]); + $example_value = db_escape_string($_POST["example_value"]); $this->host->set($this, "example", $example_value); |