ADVERTISEMENT
970x220

Duterte teases Lacson that he knows 'something'

Published Aug 31, 2021 02:06 pm

President Duterte is wondering over the "honesty" of Senator Panfilo Lacson, a declared candidate for President in the 2022 elections.

President Rodrigo Duterte (left) and Senator Panfilo Lacson (Photos from PCOO, MANILA BULLETIN)

In his pre-recorded "Talk to the People" public briefing on Monday night that was aired Tuesday morning, Aug. 31, Duterte noted how election-related verbal hostilities among politicians have already begun.

"Eleksyon naman na ganito, maaga eh, maaga ang banatan eh. So yung iba may tinatago, may...lalabas ito lahat. Kung labasan lang naman, eh 'di ilabas na natin lahat (It's already the election season and the tirades have come early. Some are hiding secrets...these will all come out. If they're coming out anyway, then let's reveal all of them)," he said.

Duterte then brought up administration critic Lacson in particular and asked him a question.

"Baka sabihin ng mga tao kayo lang ang marunong (The people might say you're the only ones who know how)...to be honest. Really?

"Tanungin ko si Panfilo Lacson (I want to ask Panfilo Lacson), are you honest? Answer me truthfully, are you honest?" the President said.

"Kung magsabi ka 'yes', sasagutin kita next program. May 'pakita ako (I'll have a reply in the next program if you say 'yes'. I'll show something)," Duterte said in a teasing manner. He then dropped the topic for the rest of the 135-minute briefing.

Lacson, a former Philippine National Police (PNP), announced in July that he would run for president in the May 2022 national polls. He said that this running mate would be Senate President Tito Sotto.

Earlier in the briefing, Duterte underscored that senators like Lacson and Imee Marcos have never had any political ties with him.

"I understand where you come from, wala naman akong ano sa inyo (I don't have anything to do with you), never had any connection. Wala akong political (I don't have a political)...even the least, pagtakbo ko ng presidente, wala kayo. Totoo lang, wala tayong kuneksyon sa ano (When I ran for president, you weren't there. It's true, we are not connected)," he said of Lacson and Marcos.

Referring only to Lacson, Duterte also said: "There will be questions in the days to come na lalabas (they will come out)...Nagpunta dito ‘yung mga kalaban mo, nagbigay rin ng dokumento, so babasahin namin ‘yan (Your enemies went here and gave documents too, so we will read those)."

Duterte, a former longtime Davao City mayor, won the 2016 presidential race in landslide fashion despite not being viewed as a political heavyweight, particularly in Luzon.

Lacson vied for the presidency in 2004, and has not been a major contender since then.

The filing of the certificates of candidacy for the 2022 elections will be held from October 1-8.

Related Tags

President Duterte may 2022 SENATOR honesty 83121 National polls Panfilo Lacson ELECTION honest Talk to the People
ADVERTISEMENT
300x250
.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 72px 0 12px; } .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; } li:empty { display: none; } .hidden { display: none; }
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]; // The two offset values // changed to 10 from 1 , 2 const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } function isNearBottom() { return window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 100; } function onScroll() { if (isLoading) return; // Skip if already loading if (isNearBottom()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; // Set flag to prevent multiple calls const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { loadCount++; // Increment only after successful execution }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; // Reset flag after execution }); } } window.addEventListener("scroll", onScroll); }); // Mutation Observer for Newly Loaded Articles const observer = new MutationObserver(() => { const articles = document.querySelectorAll(".articles-observe"); if (articles.length > 0) { observeArticles(articles); } }); observer.observe(document.body, { childList: true, subtree: true }); // Intersection Observer for Updating URL function observeArticles(articles) { 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); } } }); }, { threshold: 0.1 } ); articles.forEach(article => intersectionObserver.observe(article)); }

Sign up by email to receive news.