ADVERTISEMENT

Duterte accepts ABS-CBN's apology; denies hand in quo warranto petition

Published Feb 26, 2020 12:00 am
By Argyll Geducos President Duterte has accepted the apology of ABS-CBN President and CEO Carlo Katigbak for the shortcomings of the network during the 2016 presidential elections as he denied his involvement in the filing of a quo warranto petition against the company. Duterte made the statement two days after Katigbak, in a Senate hearing, apologized to Duterte if ABS-CBN offended him when it did not air his paid campaign ads in 2016, saying it was not their intention to offend any candidate. President Rodrigo Duterte (PCOO / MANILA BULLETIN) President Rodrigo Duterte (PCOO / MANILA BULLETIN) In an interview in Malacañang, Duterte said he accepts the apology of ABS-CBN's top honcho because he is "only human." "Tao lang rin ako (I’m only human too) so... I accept the apology, of course," he said Wednesday evening. The President likewise rejected Katigbak's offer to return the P2.6 million that was spent by the then-Davao City mayor's camp for the ads. "'Wag na. Ibigay na lang nila sa (They don't have to return it. They should just give it to) any charitable institution of their choice," Duterte said. President Duterte has threatened to block ABS-CBN's franchise renewal for their supposed bias against him, especially during the presidential elections. He also accused the network of not returning his payment for his unaired campaign ads. No hand The President denied that he instructed Solicitor General Jose Calida to file a quo warranto petition against ABS-CBN, saying he cannot order the government's lawyer because he does not report to him. "The SolGen can only announce that there is a violation of law and that he is going to investigate it. Wala na akong... Hindi ko masabihan (I cannot tell him), 'Do not do it. Stop it,'" Duterte said. "The SolGen does not clear with me unlike the Secretary of Justice. He will call my attention or he will bring it up in the Cabinet. Ang SolGen hindi (The SolGen does not do that)." Difficult decision However, President Duterte was still undecided if he will sign the franchise renewal of ABS-CBN should Congress grant it. "I will cross the bridge when I get there. Maybe I will call the media to help me out," he said. "It would be a difficult decision, really. So I will... I will cross the bridge when I get there." Duterte likewise denied that he was pressuring Congress to act unfavorably on ABS-CBN's appeal to have their franchise renewed. Their franchise will expire in May this year. "I have kept a healthy distance from... It's now in... They are deliberating in Congress. The Lower House and the Senate. There's a plan that they would pass a joint resolution, something," he said. "Magtanong kayo (You can ask around). There are about 200 of them and you can ask anybody. And if there is a congressman that would say... If it is true, I will resign. I never, never, never really called anybody about this, even before." The President, however, agreed that the decision on ABS-CBN's franchise lies with the House of Representatives and not so much with the Senate. He likewise vowed to not interfere with the process. "Fundamentally, really, ang (the) decision nasa (is with the) House ngayon (now), not so much of the Senate because the Constitution says all of these things must originate from the Lower House," Duterte said. "The critical move is in the House and I tell you I am not going to interfere."
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.