I have starred sections at the end of a chapter that do not show up in the headers. The MWE is:
\documentclass{memoir}
\usepackage{lipsum}
\begin{document}
\chapter{Some chapter}
\section*{Some section} % empty header if starred
\lipsum[1-9]
\end{document}
The header is empty:
The remedy suggested in this answer does not work for sections. How can I get the title of starred sections into the header?

