]> git.mjollnir.org Git - moodle.git/commitdiff
merged from 1.9 :: MDL-12093 :: changed function call from get_in_popup to is_in_popup.
authorurs_hunkler <urs_hunkler>
Mon, 12 Nov 2007 11:40:52 +0000 (11:40 +0000)
committerurs_hunkler <urs_hunkler>
Mon, 12 Nov 2007 11:40:52 +0000 (11:40 +0000)
theme/custom_corners/footer.html
theme/custom_corners/header.html

index 1b7d69e8ae8a6e9e5dc1b0f95358ebdf1a370762..d7ad6c1643577a094f990e0b5da40fde1d96bb42 100644 (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;
     }
index 57d089e540ed2710ebc0504f92a527fa86a36b4c..d5f4bc9e19887419b2497f455645923a9d325fe3 100644 (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;
         }