FAU Faculty Member Placed on Leave Over Charlie Kirk Controversy (2025)

Table of Contents
HOURLY DAILY

Florida Atlantic University faculty member placed on leave following social media posts on Charlie Kirk’s death

I’M RACHEL HERXHEIMER. RIGHT NOW, A FLORIDA ATLANTIC UNIVERSITY FACULTY MEMBERS ON ADMINISTRATIVE LEAVE OVER SOCIAL MEDIA POSTS ABOUT KIRK’S DEATH. FOR YOU DID NOT NAME WHO IT IS, BUT DOCTOR KAREN LEADER, AN ASSOCIATE PROFESSOR OF ART HISTORY, CONFIRMED TO WPBF 25 NEWS. SHE IS THAT FACULTY MEMBER. IN A STATEMENT, LEADER TELLS US SHE DID NOT MAKE REPEATED COMMENTS ON SOCIAL MEDIA, BUT REPOSTED INFORMATION ABOUT KIRK, INCLUDING VIDEOS, QUOTES AND ARTICLES FOR US PRESIDENT, WEIGHED IN ON A SOCIAL MEDIA POST YOU’RE LOOKING AT HERE SAYING IN PART, QUOTE, OUR FOCUS REMAINS ON OUR ACADEMIC COMMUNITY’S RESPONSIBILITY TO PROMOTE CIVIL DISCOURSE, CONDUCT HEALTHY DEBATE, AND TREAT ONE ANOTHE

FAU Faculty Member Placed on Leave Over Charlie Kirk Controversy (1)

Updated: 12:55 PM EDT Sep 15, 2025

Editorial Standards ⓘ

Florida Atlantic University confirmed on Saturday that it has placed a tenured faculty member on administrative leave after what the university said was repeated comments on social media about the death of conservative activist Charlie Kirk.Although FAU did not name the faculty member who was placed on administrative leave, Dr. Karen Leader, an associate professor of art history confirmed to WPBF 25 News Sunday night that she is the faculty member placed on administrative leave.Leader told WPBF 25 News that FAU's accusation that she made repeated comments on social media about Kirk's death was inaccurate."I did not mention his death or his murder," Leader said. "I reposted information about who Charlie Kirk was, including videos, quotes, and articles. My intention, along with other posters, was to counter a rapidly emerging narrative insisting that Mr. Kirk was moderate."FAU says an investigation will be conducted.“It is our expectation that all employees pursue the university’s mission and values to promote higher education, cultivate academic excellence, and support the personal growth of our students,” FAU President Adam Hasner said in a statement. “Our focus remains on our academic community’s responsibility to promote civil discourse, conduct healthy debate and treat one another with respect. This applies to all students, faculty, and staff no matter their political leanings.”Kirk, 31, was shot and killed during an outdoor event at Utah Valley University on Sept. 10. On Sept. 12, Tyler Robinson, 22, was arrested in connection with the killing of Kirk.Stay up-to-date: The latest headlines and weather from WPBF 25Get the latest news updates with the WPBF 25 News app. You can download it here.

BOCA RATON, Fla. —

Florida Atlantic University confirmed on Saturday that it has placed a tenured faculty member on administrative leave after what the university said was repeated comments on social media about the death of conservative activist Charlie Kirk.

Although FAU did not name the faculty member who was placed on administrative leave, Dr. Karen Leader, an associate professor of art history confirmed to WPBF 25 News Sunday night that she is the faculty member placed on administrative leave.

° F FEELS LIKE

HOURLY

DAILY

RADAR

TRAFFIC

${data.primaryTemp}°

${data.secondaryInfo}

`; } function initializeWeatherBox(container) { function switchWeatherTab(tabName, clickedElement) { container.querySelectorAll('[data-tab-id]').forEach(function(tab) { tab.classList.remove('open'); }); clickedElement.classList.add('open'); container.querySelectorAll('[data-content-id]').forEach(function(content) { content.style.display = 'none'; }); var targetContent = container.querySelector('[data-content-id="' + tabName + '"]'); if (targetContent) { targetContent.style.display = 'block'; } } function loadWeatherData() { var location = { zip: window.DEFAULT_ZIPCODE }; try { var storedLocation = localStorage.getItem('htv.zip.last'); if (storedLocation) { location = JSON.parse(storedLocation); } } catch (e) {} var apiUrl = (window.DEWY_HOSTNAME || '') + '/api/v1/weather/full/' + location.zip; if (window.fetch) { fetch(apiUrl) .then(function(response) { return response.json(); }) .then(function(data) { if (data && data.data) { var article = container.closest('.article--wrapper'); var weatherContainer = container.closest('.weather-box-container'); if (weatherContainer) { weatherContainer.style.display = 'flex'; updateCurrentWeather(data.data); updateForecastTabs(data.data); updateWeatherAlertsBar(data.data); } } }) .catch(function(error) { console.error('Error loading weather:', error); }); } } function updateWeatherAlertsBar(weatherData) { var weatherWatchHeader = container.querySelector('.weather-watch-header'); if (weatherWatchHeader && weatherData.alerts_count > 0) { weatherWatchHeader.className = 'weather-watch-header has-alerts'; var weatherWatchText = weatherWatchHeader.querySelector('.weather-watch-text'); var weatherWatchLink = weatherWatchHeader.querySelector('.weather-watch-link'); if (weatherWatchText) { weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`; } if (weatherWatchLink) { weatherWatchLink.href = '/alerts'; } } } function updateCurrentWeather(weatherData) { if (weatherData.current) { var tempEl = container.querySelector('.weather-grid--current-temp-value'); if (tempEl) tempEl.textContent = weatherData.current.temp_f || ''; var iconEl = container.querySelector('.weather-grid--current-icon'); if (iconEl && weatherData.current.icon_name) { iconEl.className = 'weather-grid--current-icon weather-current-icon icon icon-weather-' + weatherData.current.icon_name; } var skyEl = container.querySelector('.weather-grid--sky'); if (skyEl) skyEl.textContent = weatherData.current.sky || ''; var feelsEl = container.querySelector('.weather-grid--feels'); if (feelsEl) feelsEl.textContent = (weatherData.current.feels_like_f || weatherData.current.temp_f || '') + '°F'; } } function updateForecastTabs(weatherData) { if (weatherData.hourly) { var hourlyContainer = container.querySelector('.weather-hourly-forecast'); if (hourlyContainer) { var html = ''; var maxHours = Math.min(5, weatherData.hourly.length); for (var i = 0; i < maxHours; i++) { var hour = weatherData.hourly[i]; html += generateForecastItem({ timeLabel: hour.hour_display, iconName: hour.icon_name, primaryTemp: hour.temp_f, secondaryInfo: hour.precip_chance + '%' }); } hourlyContainer.innerHTML = html; } } if (weatherData.daily) { var dailyContainer = container.querySelector('.weather-daily-forecast'); if (dailyContainer) { var html = ''; var maxDays = Math.min(5, weatherData.daily.length); for (var i = 0; i < maxDays; i++) { var day = weatherData.daily[i]; var dayName = getShortDayName(day.day); html += generateForecastItem({ timeLabel: dayName, iconName: day.icon_name, primaryTemp: day.high_f, secondaryInfo: day.low_f + '°' }); } dailyContainer.innerHTML = html; } } } function getShortDayName(dayName) { switch (dayName) { case 'Today': return 'Today'; case 'Tomorrow': return 'Tmrw'; case 'Sunday': return 'Sun'; case 'Monday': return 'Mon'; case 'Tuesday': return 'Tue'; case 'Wednesday': return 'Wed'; case 'Thursday': return 'Thu'; case 'Friday': return 'Fri'; case 'Saturday': return 'Sat'; default: return dayName; } } container.querySelectorAll('[data-tab-id]').forEach(function(tab) { tab.onclick = function() { switchWeatherTab(this.getAttribute('data-tab-id'), this); return false; }; }); loadWeatherData(); } document.querySelectorAll('.weather-sidebar').forEach(function(weatherBox) { initializeWeatherBox(weatherBox); }); document.addEventListener('fullscreenchange', function() { var fullscreenElement = document.fullscreenElement; if (!fullscreenElement) { document.querySelector('.weather-box-container').querySelectorAll('.fa-times').forEach(function(icon) { icon.classList.remove('fa-times'); icon.classList.add('fa-expand'); }); } });});

Advertisement

Leader told WPBF 25 News that FAU's accusation that she made repeated comments on social media about Kirk's death was inaccurate.

"I did not mention his death or his murder," Leader said. "I reposted information about who Charlie Kirk was, including videos, quotes, and articles. My intention, along with other posters, was to counter a rapidly emerging narrative insisting that Mr. Kirk was moderate."

FAU says an investigation will be conducted.

Hundreds gather at FAU for memorial service for Charlie Kirk

“It is our expectation that all employees pursue the university’s mission and values to promote higher education, cultivate academic excellence, and support the personal growth of our students,” FAU President Adam Hasner said in a statement.

'He made it cool to be Republican': Palm Beach Young Republicans react to death of Charlie Kirk

“Our focus remains on our academic community’s responsibility to promote civil discourse, conduct healthy debate and treat one another with respect. This applies to all students, faculty, and staff no matter their political leanings.”

This content is imported from Twitter.You may be able to find the same content in another format, or you may be able to find more information, at their web site.

pic.twitter.com/Fjkq09yfF7

— Florida Atlantic University (@FloridaAtlantic) September 13, 2025

Kirk, 31, was shot and killed during an outdoor event at Utah Valley University on Sept. 10. On Sept. 12, Tyler Robinson, 22, was arrested in connection with the killing of Kirk.

Charlie Kirk assassination sparks security concerns at public events

Stay up-to-date: The latest headlines and weather from WPBF 25

Get the latest news updates with the WPBF 25 News app. You can download it here.

FAU Faculty Member Placed on Leave Over Charlie Kirk Controversy (2025)
Top Articles
Latest Posts
Recommended Articles
Article information

Author: Delena Feil

Last Updated:

Views: 5986

Rating: 4.4 / 5 (65 voted)

Reviews: 80% of readers found this page helpful

Author information

Name: Delena Feil

Birthday: 1998-08-29

Address: 747 Lubowitz Run, Sidmouth, HI 90646-5543

Phone: +99513241752844

Job: Design Supervisor

Hobby: Digital arts, Lacemaking, Air sports, Running, Scouting, Shooting, Puzzles

Introduction: My name is Delena Feil, I am a clean, splendid, calm, fancy, jolly, bright, faithful person who loves writing and wants to share my knowledge and understanding with you.