Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions language/functions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ if ($makefoo) {
}

/* Now we can safely call foo()
since $makefoo evaluated to true */
since function_exists('foo') evaluated to true */

if ($makefoo) foo();
if (function_exists('foo')) foo();

function bar()
{
Expand Down