Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    •  
      CommentAuthorkent
    • CommentTimeDec 4th 2007
     
    Why is that?

    in gallery.php
    include("plog-globals.php");
    include_once("plog-load_config.php");
    include_once("plog-functions.php");

    in plog-load_config.php
    require_once($plog_basedir."plog-globals.php");
    require_once($plog_basedir."plog-functions.php");
    require_once($plog_basedir."plog-config.php");

    think ive seen it in some other place too
    •  
      CommentAuthormike
    • CommentTimeDec 8th 2007
     
    Some poor architecture choices. But as you see, we are using require_ONCE. This won't pull it in again if it has already been pulled in.