Skip to content
This repository was archived by the owner on Mar 1, 2024. It is now read-only.

switched from include to include_once in types #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions types.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@
///////////////////////////////////////////////////////////////////////////////////////////////////

//control base class
include 'types/base.php';
include_once 'types/base.php';

//control types
include 'types/separator.php';
include 'types/text.php';
include 'types/textarea.php';
include 'types/checkbox.php';
include 'types/list.php';
include 'types/note.php';
include 'types/recaptcha.php';
include 'types/file.php';
include_once 'types/separator.php';
include_once 'types/text.php';
include_once 'types/textarea.php';
include_once 'types/checkbox.php';
include_once 'types/list.php';
include_once 'types/note.php';
include_once 'types/recaptcha.php';
include_once 'types/file.php';

//'panel' helpers
include 'types/panelhelper.php';
Expand Down