diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2009-03-12 22:24:42 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2009-03-12 22:24:42 -0400 |
commit | 8dcc8bbc52ae50246c50fb050d40f717822c3fcf (patch) | |
tree | 567e1108cd7d9438b7ca23b48c0287d6e4d6ca19 | |
parent | 957d8f756240363ad43ac68a4c18b7f9e8e1c57b (diff) | |
download | pfsense-8dcc8bbc52ae50246c50fb050d40f717822c3fcf.zip pfsense-8dcc8bbc52ae50246c50fb050d40f717822c3fcf.tar.gz |
Use require_once()
-rwxr-xr-x | etc/rc.banner | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc.banner b/etc/rc.banner index d4e840a..1ba8803 100755 --- a/etc/rc.banner +++ b/etc/rc.banner @@ -32,8 +32,8 @@ */ /* parse the configuration and include all functions used below */ - require("config.inc"); - require("interfaces.inc"); + require_once("config.inc"); + require_once("interfaces.inc"); $version = trim(file_get_contents("{$g['etc_path']}/version")); $platform = trim(file_get_contents("{$g['etc_path']}/platform")); |