Use default text only if === null. Props DD32. fixes #8156
git-svn-id: https://develop.svn.wordpress.org/trunk@9816 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
af7246487e
commit
9af3568f29
|
@ -179,7 +179,7 @@ function the_content($more_link_text = null, $stripteaser = 0, $more_file = '')
|
|||
function get_the_content($more_link_text = null, $stripteaser = 0, $more_file = '') {
|
||||
global $id, $post, $more, $page, $pages, $multipage, $preview, $pagenow;
|
||||
|
||||
if ( null == $more_link_text )
|
||||
if ( null === $more_link_text )
|
||||
$more_link_text = __( '(more...)' );
|
||||
|
||||
$output = '';
|
||||
|
|
Loading…
Reference in New Issue