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:
Ryan Boren 2008-11-20 18:20:25 +00:00
parent af7246487e
commit 9af3568f29
1 changed files with 1 additions and 1 deletions

View File

@ -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 = '';