* Removed a comment, "FIXME require in a foreach", require_once() will be
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Mon, 27 Jun 2005 08:23:22 +0000 (08:23 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Mon, 27 Jun 2005 08:23:22 +0000 (08:23 +0000)
commite34aa50e1321a6912287ba4e938854f4d707d594
treefa79843409d29ef99238320149606b14efa09a8a
parentf40ae979322494c8f9c633c799671dd5fa967554
* Removed a comment, "FIXME require in a foreach", require_once() will be
  evaluated exactly once during execution (it has an effect similar to the
  static keyword), do demonstrate this behaviour run the code
    for ($i = 0; $i < 10; ++$i) require("file.txt");
  in a directory that has a file called 'file.txt' and then change require()
  to require_once();
includes/Parser.php