MDL-12093 :: changed function call from get_in_popup to is_in_popup.

This commit is contained in:
urs_hunkler
2007-11-12 11:36:57 +00:00
parent 24bcd2e3b1
commit 04139219e7
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -3,8 +3,8 @@
<!-- START OF FOOTER -->
<?php
global $CFG, $COURSE;
if (function_exists('get_in_popup')) {
$inpopup = get_in_popup();
if (function_exists('is_in_popup')) {
$inpopup = is_in_popup();
} else {
$inpopup = false;
}
+2 -2
View File
@@ -16,8 +16,8 @@
global $PAGE;
if (function_exists('get_in_popup')) {
$inpopup = get_in_popup();
if (function_exists('is_in_popup')) {
$inpopup = is_in_popup();
} else {
$inpopup = false;
}