ADVERTISEMENT

PAO asks SC to consider public lawyers' safety

Published Apr 28, 2023 05:52 am
The Public Attorney’s Office (PAO) has expressed concerns over the safety of its lawyers should a provision in the newly launched Code of Professional Responsibility and Accountability (CPRA) be implemented by the Supreme Court (SC). PAO, an independent office attached to the Department of Justice (DOJ), is mandated to provide free legal assistance particularly to indigents persons in filing of cases, mediation, and court trials, and other legal services. In a letter to Chief Justice Alexander G. Gesmundo, PAO Chief Persida V. Rueda Acosta pointed out Section 21, Canon III of the CPRA which states: “A conflict of interest of any of the lawyers of the Public Attorney’s Office incident to services rendered for the Office shall be imputed only to the said lawyer and the lawyer’s direct supervisor. Such conflict of interest shall not disqualify the rest of the lawyers from the Public Attorney’s Office from representing the affected client, upon full disclosure to the latter and written informed consent.” Acosta said the provision in Section 21 allows PAO lawyers to be pitted against each other before the courts by representing opposing parties in cases. She said the provision “puts at risk the life and limb of the handling public attorneys because if things go wrong, clients would have enough reason to suspect that their counsels double-crossed them.” “There were instances when conflict-of-interest representation was the cause of death of former public attorneys,” Acosta lamented. She recounted that in Region VII, “a former public attorney who later resigned and became a private practitioner was killed for handling a conflicting case.” “Another public attorney in Infanta, Quezon who assisted a murder suspect was killed in broad daylight when he became a public prosecutor and handled the conflicting case,” she said. She cited that based on experience, “PAO clients will never agree for their adversaries to be represented by PAO.” “Individuals who approach PAO are always in a state of helplessness, hopelessness, and desperation. Because of their dire financial standing and being so lowly in life, they come to the PAO very uncertain and insecure as to whether they will indeed obtain justice and whether their ‘free’ government lawyers will be as loyal, diligent, persistent, and competent as private practitioners.  Conflict-of-interest representation would most definitely add to their doubts and insecurities,” she pointed out. Pending action on PAO’s plea, Acosta asked the SC that the provision “be temporarily not implemented pending a second look and review by all members of the Supreme Court En Banc on its constitutionality, and determination of whether it is detrimental to the integrity of the justice system, public service and public trust, and safety of the life and limb of public attorneys.” She said that there are other means indigent persons can get free lawyers. “Indigents are not left without any option in the very few and far instances when the services of the PAO cannot be availed of,” she said. She cited Republic Act No. 9999, the Free Legal Assistance Act of 2010, wherein “a private lawyer or professional partnership/firm provides free legal assistance to indigents who cannot secure legal services from the PAO, the Department of Justice (DOJ), or any accredited association of the Supreme Court.” She also said that in 2021, “the DOJ and the Integrated Bar of the Philippines (IBP) signed a memorandum of agreement to provide free legal assistance to indigents who cannot be accommodated by the PAO.” “Further, law schools and universities have legal aid clinics under their Clinical Legal Education Program (A.M. No. 19-03-24-SC),” she added. Also, she said “there are also existing legal aid non-governmental organizations (NGOs); such as, the Free Legal Assistance Group and the National Union of Peoples’ Lawyers.” On top of representation in court cases, Acosta said that PAO “also assists both contending parties whose cases are not yet pending in court by conducting mediation/conciliation proceedings, as governed by the 2021 Revised PAO Operations Manual.”
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.