ADVERTISEMENT

Duterte reveals his Barrett's esophagus is worsening

Published Aug 25, 2020 08:31 pm

President Duterte bared on Tuesday that his doctor told him that his Barrett’s esophagus was “nearing stage one cancer”.

President Rodrigo Roa Duterte holds a meeting with the Inter-Agency Task Force on the Emerging Infectious Diseases (IATF-EID) core members at the Matina Enclaves in Davao City on August 24, 2020. SIMEON CELI JR./PRESIDENTIAL PHOTO

In his televised address, the President said he has been advised to stop drinking alcohol to avoid worsening his ailment.

The President previously admitted suffering from Barret’s esophagus due to his alcohol intake. Barrett’s esophagus is a complication of gastroesophageal reflux disease (GERD) in which stomach regurgitates its contents into the esophagus and consequently erodes the esophagus, according to the US-based Johns Hopkins Medicine website. The condition can sometimes develop into esophageal cancer, the institute added.

The 75-year-old Duterte talked about his health while discussing his and other old Cabinet members’ commitment to fight corruption during his taped public address aired on state television.

“Matagal na kami sa gobyerno, magpa-retire na lang, bakit pa namin pagsayangan? Kakaunting panahon na lang ang naiwan so walang… walang… walang ganang… wala nang ganang kumain (We have been in government for a long time. We will retire soon so why would we waste it? We have a few years left, we no longer have an appetite to eat),” Duterte said during a meeting with several Cabinet members in Davao City Monday.

Duterte said that old people like him are more concerned about health, and not wealth.

“May pera ka naman, hindi ka na makakain kay sabi ng doktor huwag kang kumain ng taba kasi mamatay ka (You have money but you can’t eat because the doctors said you must not eat fat because you will die),” he said.

“Ikaw Duterte, huwag ka nang uminom kasi ‘yang Barrett mo nearing stage one ka sa cancer. So hindi na rin (Duterte, do not drink because your Barrett is nearing stage one cancer, so I stopped),” he added.

Duterte said he and the rest of the Cabinet are committed to render public service and would let the Lord judge them.

“Ang amin, ang iwan na lang ang trabaho (For us, we would leave behind the job we did),” he said. “Kasi pagharap namin sa Diyos and tanungin ka na, “O ikaw Rodrigo, anong ginawa mo?” Sabi ko, ‘Ginawa ko man lahat’ (Because when we face God and he will ask you, ‘Rodrigo, what did you do? I’ll say ‘I did everything’),” he said.

The President has been staying in his home city of Davao since early August. He recently dispelled rumors he flew to Singapore for a medical emergency, saying he has been in his hometown all along.

Malacañang has assured the nation the President remains healthy and strong as seen by his recent public address.

In 2018, the President said his cancer tests came back negative but admitted he suffers from a bad case of Barrett’s esophagus ailment following a medical checkup. Such ailment worsened because he has been drinking brandy again, he said.

Last year, the President admitted that his doctor takes his blood “almost every other day” due to his Buerger’s disease, an inflammatory condition of the blood vessels.

He also previously admitted he was in “perpetual pain” due to a spinal injury from a motorcycle accident years ago. He once claimed that he was taking fentanyl, a powerful painkiller, to ease the pain.

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.