diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-25 19:20:47 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-25 19:20:47 -0500 |
commit | 0c66442b559a350527aa35155ec965a2901cafbc (patch) | |
tree | 338214a3abdf18d43f3df1e7a238eb49bc0fb0bc /flag.php | |
parent | 9a83f50042925e0daa0aab1b44fcc8d39e79edf2 (diff) | |
download | ampache-0c66442b559a350527aa35155ec965a2901cafbc.tar.gz ampache-0c66442b559a350527aa35155ec965a2901cafbc.tar.bz2 ampache-0c66442b559a350527aa35155ec965a2901cafbc.zip |
require and require_once aren't functions
Since the parentheses are optional, we leave them off to remind ourselve
that PHP be crazy, yo.
Diffstat (limited to 'flag.php')
-rw-r--r-- | flag.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ * This is called for all of our flagging needs */ -require_once('lib/init.php'); +require_once 'lib/init.php'; show_template('header'); |