From 8125031f99f5455815a9c23b76f8679af1f590f0 Mon Sep 17 00:00:00 2001 From: Tim Fry Date: Wed, 12 Mar 2025 11:59:25 -0300 Subject: [PATCH] remove include statement of class file --- app/switch/resources/classes/ringbacks.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/switch/resources/classes/ringbacks.php b/app/switch/resources/classes/ringbacks.php index 4dfb326587..d206eac70b 100644 --- a/app/switch/resources/classes/ringbacks.php +++ b/app/switch/resources/classes/ringbacks.php @@ -84,18 +84,15 @@ */ //get the tones - require_once "resources/classes/tones.php"; $tones = new tones; $this->tones_list = $tones->tones_list(); //get music on hold and recordings if (is_dir($_SERVER["PROJECT_ROOT"].'/app/music_on_hold')) { - require_once "app/music_on_hold/resources/classes/switch_music_on_hold.php"; $music = new switch_music_on_hold; $this->music_list = $music->get(); } if (is_dir($_SERVER["PROJECT_ROOT"].'/app/recordings')) { - require_once "app/recordings/resources/classes/switch_recordings.php"; $recordings = new switch_recordings; $this->recordings_list = $recordings->list_recordings(); }