ADVERTISEMENT

Castro hits Dela Rosa's 'cowardly act', 'double standard'

Published Jun 30, 2024 05:54 am

At A Glance

  • Senator Ronald "Bato" Dela Rosa's apparent refusal to attend the House inquiry on the Duterte drug war killings is "a cowardly act", says House Deputy Minority Leader ACT Teachers Party-list Rep. France Castro.

20240630_131001.jpgSenator Ronald "Bato" dela Rosa (left), ACT Teachers Party-list Rep. France Castro (Facebook, PPAB)

 

 

 

 

 

 

 

Senator Ronald "Bato" Dela Rosa's apparent refusal to attend the House inquiry on the Duterte drug war killings is "a cowardly act". 

Thus, said House Deputy Minority Leader ACT Teachers Party-list Rep. France Castro, who went as far to claim that the former Philippine National Police (PNP) chief-turned-senator was "[attempting] to evade accountability". 

"Senator Dela Rosa should not hide behind inter-parliamentary courtesy as an excuse. The truth is, he is afraid to face the victims of the bloody drug war that he and former president [Rodrigo] Duterte orchestrated," Castro said in the statement Sunday, June 30. 

"We call on Senator Dela Rosa to reconsider his decision. If he truly believes in the righteousness of their actions, he should have no fear in facing this inquiry. The victims and their families deserve nothing less than the truth and justice,"  she said. 

The House Committee on Human Rights, which had been conducting the inquiry on the alleged extrajudicial killings (EJKs) during the previous administration, had earlier invited former president Rodrigo Duterte and his one-time PNP chief Dela Rosa to attend a future hearing.  

But Dela Rosa had apparently said he will not go to such hearing. 

Castro pointed out the inconsistency in Dela Rosa's stance, noting that the senator himself had previously invited members of the House to Senate hearings. "Didn't he invite [Kabataan Party-list] Congressman Raoul Manuel to a Senate hearing? Why the double standard now?" she asked. 

Manuel, like Castro, is a member of the Makabayan bloc in the House of Representatives. 

HAVE YOU READ THIS? 

https://mb.com.ph/2024/6/29/ganging-up-kabataan-solon-chides-dela-rosa-for-refusing-to-attend-house-drug-war-probe

 

The lady solon also criticized Dela Rosa's claim that the justice system was working because some police officers have been convicted. "The convictions are too few and far between. As one of the architects of this bloody war on drugs, he himself should face investigation and be held accountable," she noted. 

Castro underscored that the House inquiry is a crucial step towards uncovering the truth and seeking justice for the victims of extrajudicial killings. "Senator Dela Rosa's refusal to participate only reinforces the suspicion that he has something to hide," she added. 

Former presidential spokesman Harry Roque earlier said that Duterte won't be attending the inquiry.

 

Related Tags

Ronald Bato dela Rosa Rodrigo Duterte FRANCE CASTRO War on drugs
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.