ADVERTISEMENT

Fowler makes late charge to grab PGA lead at storm-hit Detroit

Published Jul 2, 2023 11:31 am
WASHINGTON (AFP) -- Rickie Fowler, trying to snap a four-year victory drought, birdied six of the last eight holes for a one-stroke lead after Saturday's third round of the PGA Tour Rocket Mortgage Classic. *Rickie Fowler of the United States plays his shot from the 18th tee during the third round of the Rocket Mortgage Classic at Detroit Golf Club on Saturday, July 1, in Detroit, Michigan. (AFP)*
The 34-year-old American, who last won at the 2019 Phoenix Open, sizzled down the back nine to fire an eight-under par 64 and stand on 20-under 196 after 54 holes at Detroit Golf Club. "Just felt good," Fowler said. "Swing felt nice. I wanted to keep giving myself as many looks as I could. Good swings and made some putts." Canadian Adam Hadwin matched the course record with a bogey-free 63 to finish one back of Fowler on 197 with countryman Taylor Pendrith third on 198 after taking his first bogeys of the week at the par-3 15th and 18. England's Aaron Rai and American Peter Kuest, a Monday qualifier, shared fourth on 199. Afternoon storms halted play for an hour and 42 minutes and a stormy forecast prompted officials to move Sunday tee times to early morning in threesomes off first and 10th tees. "I'm just hoping we can finish," Fowler said. Fowler, a five-time PGA winner whose titles include the 2017 Players Championship, has struggled for the past three seasons but revived his form this year with nine top-20 finishes in his past 10 events. He's confident a triumph is not far off. "Whether it happens tomorrow or not, it's going to happen here soon," Fowler said. "I'm not pressing that I need to go get it done tomorrow or it means absolutely nothing. "I've been playing a lot of really good golf and been putting myself in good positions. This definitely won't be the last, but yeah, it will be fun tomorrow." Fowler sank a 20-foot birdie putt at the second and birdied all four par-5 holes -- the fourth, seventh, 14th and 17th. After taking his lone bogey at 10 when he landed his tee shot behind a tree in the far left rough, Fowler birdied the 13th with a 12-foot putt, the 14th on a tap-in and the par-3 15th from just outside four feet. Fowler tapped in for birdie at 15 to match Hadwin for the lead and then dropped his approach just inside three feet at 18 and tapped in for the lead. Hadwin went four-under over the last five holes with a 17-foot eagle putt at 14, a 12-foot birdie putt at 15 and a tap-in birdie at 17. "This is the round I needed to give myself a chance tomorrow," Hadwin said. "Guys are going low. I've got to keep making birdies, keep hitting fairways, staying out of my own way and keep making decisions quickly." Hadwin, whose only PGA victory came at the 2017 Valspar Championship, fired a 59 at LaQuinta Country Club in the 2017 PGA CareerBuilder Challenge and pondered another 59 on Saturday. "It kind of passed through my mind. I did quick match after eagle-birdie on 14-15," he said. "I just didn't think there were enough holes coming in." World number 127 Pendrith, chasing his first PGA title, was last year's Detroit runner-up. His only top-10 finish this season was a share of seventh at Pebble Beach.

Related Tags

PGA
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.