[geeklog-cvs] Geeklog-1.x/public_html/admin/plugins/calendar install.php, 1.14, 1.15

Dirk Haun dhaun at qs1489.pair.com
Fri May 23 09:36:14 EDT 2008


Update of /cvsroot/geeklog/Geeklog-1.x/public_html/admin/plugins/calendar
In directory qs1489.pair.com:/tmp/cvs-serv40569/calendar

Modified Files:
	install.php 
Log Message:
All the bundled plugins now require the SEC_createToken function


Index: install.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/admin/plugins/calendar/install.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** install.php	19 Apr 2008 15:14:41 -0000	1.14
--- install.php	23 May 2008 13:36:12 -0000	1.15
***************
*** 12,16 ****
  // | Based on the Universal Plugin and prior work by the following authors:    |
  // |                                                                           |
! // | Copyright (C) 2002-2006 by the following authors:                         |
  // |                                                                           |
  // | Authors: Tony Bibbs        - tony AT tonybibbs DOT com                    |
--- 12,16 ----
  // | Based on the Universal Plugin and prior work by the following authors:    |
  // |                                                                           |
! // | Copyright (C) 2002-2008 by the following authors:                         |
  // |                                                                           |
  // | Authors: Tony Bibbs        - tony AT tonybibbs DOT com                    |
***************
*** 39,43 ****
  // $Id$
  
! require_once ('../../../lib-common.php');
  
  // Plugin information
--- 39,43 ----
  // $Id$
  
! require_once '../../../lib-common.php';
  
  // Plugin information
***************
*** 48,52 ****
  $pi_name         = 'calendar';
  $pi_version      = '1.0.2';
! $gl_version      = '1.4.1';
  $pi_url          = 'http://www.geeklog.net/';
  
--- 48,52 ----
  $pi_name         = 'calendar';
  $pi_version      = '1.0.2';
! $gl_version      = '1.5.0';
  $pi_url          = 'http://www.geeklog.net/';
  
***************
*** 82,88 ****
  *
  */
! function plugin_compatible_with_this_geeklog_version ()
  {
!     if (function_exists ('COM_printUpcomingEvents')) {
          // if this function exists, then someone's trying to install the
          // plugin on Geeklog 1.4.0 or older - sorry, but that won't work
--- 82,88 ----
  *
  */
! function plugin_compatible_with_this_geeklog_version()
  {
!     if (function_exists('COM_printUpcomingEvents')) {
          // if this function exists, then someone's trying to install the
          // plugin on Geeklog 1.4.0 or older - sorry, but that won't work
***************
*** 90,95 ****
      }
  
!     if (!function_exists ('MBYTE_strpos')) {
          // the plugin requires the multi-byte functions
          return false;
      }
--- 90,99 ----
      }
  
!     if (!function_exists('MBYTE_strpos')) {
          // the plugin requires the multi-byte functions
+         return false;
+     }
+ 
+     if (!function_exists('SEC_createToken')) {
          return false;
      }




More information about the geeklog-cvs mailing list