ADVERTISEMENT

Everyone should respect freedom of expression

Published Oct 26, 2023 04:05 pm

E CARTOON OCT 27, 2023 (1).jpg

Freedom of expression is a fundamental constitutional right that is the lifeblood of democracy. It guarantees and encourages a free discourse — an open exchange of views to help shape public opinion — to ensure a vibrant democracy.


This basic right is enshrined in the Constitution and should not be trampled upon by anyone — whether the powerful or the weak, the rich or the poor.


Article III, Section 4 of the 1987 Philippine Constitution is very clear. “No law shall be passed abridging the freedom of speech, of expression, or of the press, or the right of the people peaceably to assemble and petition the government for redress of grievances.” 


This constitutional right was once again upheld by the Supreme Court when it ruled recently that the removal and destruction of privately owned political campaign materials displayed on private properties is unconstitutional.


The High Tribunal’s ruling stemmed from a petition filed by St. Anthony College of Roxas City, Inc. against the Commission on Elections (Comelec). The poll body, which  was then enforcing “Oplan Baklas” under Republic Act No. 9006 (The Fair Election Act) and Comelec Resolution 10730, confiscated and destroyed political campaign materials displayed in the school premises. Oplan Baklas is the poll body’s campaign to take down political campaign materials it deemed illegal.


While the Supreme Court recognized “the zeal and dedication with which the Comelec performs its duties and fulfills its mandate to ensure free and fair elections, the best intentions cannot justify impermissible infringements on constitutional rights.”


The High Tribunal said “the Comelec’s implementation of Oplan Baklas as against St. Anthony, et al., is unconstitutional as it exceeded the bounds of permissible regulation under RA 9006 and Comelec Resolution No. 10730.”


In its ruling, the SC made it clear that the Comelec may validly implement Oplan Baklas against candidates and political parties. However, the SC said, the poll body cannot do the same against private individuals who are expressing their political preferences or support for a candidate or political party.


The Supreme Court stressed that it “has always protected political speech as one of the most important expressions guaranteed by the Constitution, and freedom of speech and expression is at the core of civil liberties and must be protected at all costs for the sake of democracy.”


In another decision issued in 2015 in the case of Diocese of Bacolod vs Comelec, the Supreme Court ruled that the “Comelec had no legal basis to regulate expressions made by private citizens… Comelec does not have the authority to regulate the enjoyment of the preferred right to freedom of expression exercised by a non-candidate in this case.”
The case involves the display of political propaganda using tarpaulin inside the church premises.


In the same ruling, the High Tribunal stressed that “limiting the maximum size of the tarpaulin would render ineffective petitioners’ message and violate their right to exercise freedom of expression.”


These two rulings serve as a reminder to everyone that the right to freedom of speech, of expression, or of the press is guaranteed by the Constitution—no ifs or buts.


Let’s all respect these rights.
 

Related Tags

Editorial Manila Bulletin
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.