1<?php 2 3$_SERVER['BASE_PAGE'] = 'releases/active.php'; 4 5include_once __DIR__ . '/../include/prepend.inc'; 6include_once $_SERVER['DOCUMENT_ROOT'] . '/include/branches.inc'; 7 8header('Content-Type: application/json; charset=UTF-8'); 9 10echo json_encode(get_active_branches()); 11