[geeklog-cvs] geeklog: All the bundled plugins require COM_showMessageText now

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Sun Nov 23 13:41:54 EST 2008


details:   http://project.geeklog.net/cgi-bin/hgweb.cgi/rev/b2c3c0b8dbe1
changeset: 6484:b2c3c0b8dbe1
user:      Dirk Haun <dirk at haun-online.de>
date:      Sun Nov 23 19:36:30 2008 +0100
description:
All the bundled plugins require COM_showMessageText now

diffstat:

5 files changed, 20 insertions(+)
public_html/admin/plugins/calendar/install.php    |    4 ++++
public_html/admin/plugins/links/install.php       |    4 ++++
public_html/admin/plugins/polls/install.php       |    4 ++++
public_html/admin/plugins/spamx/install.php       |    4 ++++
public_html/admin/plugins/staticpages/install.php |    4 ++++

diffs (70 lines):

diff -r 41007a8ec884 -r b2c3c0b8dbe1 public_html/admin/plugins/calendar/install.php
--- a/public_html/admin/plugins/calendar/install.php	Sun Nov 23 18:27:55 2008 +0100
+++ b/public_html/admin/plugins/calendar/install.php	Sun Nov 23 19:36:30 2008 +0100
@@ -95,6 +95,10 @@
     }
 
     if (!function_exists('SEC_createToken')) {
+        return false;
+    }
+
+    if (!function_exists('COM_showMessageText')) {
         return false;
     }
 
diff -r 41007a8ec884 -r b2c3c0b8dbe1 public_html/admin/plugins/links/install.php
--- a/public_html/admin/plugins/links/install.php	Sun Nov 23 18:27:55 2008 +0100
+++ b/public_html/admin/plugins/links/install.php	Sun Nov 23 19:36:30 2008 +0100
@@ -91,6 +91,10 @@
     }
 
     if (!function_exists('SEC_createToken')) {
+        return false;
+    }
+
+    if (!function_exists('COM_showMessageText')) {
         return false;
     }
 
diff -r 41007a8ec884 -r b2c3c0b8dbe1 public_html/admin/plugins/polls/install.php
--- a/public_html/admin/plugins/polls/install.php	Sun Nov 23 18:27:55 2008 +0100
+++ b/public_html/admin/plugins/polls/install.php	Sun Nov 23 19:36:30 2008 +0100
@@ -93,6 +93,10 @@
     }
 
     if (!function_exists('SEC_createToken')) {
+        return false;
+    }
+
+    if (!function_exists('COM_showMessageText')) {
         return false;
     }
 
diff -r 41007a8ec884 -r b2c3c0b8dbe1 public_html/admin/plugins/spamx/install.php
--- a/public_html/admin/plugins/spamx/install.php	Sun Nov 23 18:27:55 2008 +0100
+++ b/public_html/admin/plugins/spamx/install.php	Sun Nov 23 19:36:30 2008 +0100
@@ -85,6 +85,10 @@
     }
 
     if (function_exists('SEC_createToken')) {
+        return true;
+    }
+
+    if (function_exists('COM_showMessageText')) {
         return true;
     }
 
diff -r 41007a8ec884 -r b2c3c0b8dbe1 public_html/admin/plugins/staticpages/install.php
--- a/public_html/admin/plugins/staticpages/install.php	Sun Nov 23 18:27:55 2008 +0100
+++ b/public_html/admin/plugins/staticpages/install.php	Sun Nov 23 19:36:30 2008 +0100
@@ -90,6 +90,10 @@
     }
 
     if (!function_exists('SEC_createToken')) {
+        return false;
+    }
+
+    if (!function_exists('COM_showMessageText')) {
         return false;
     }
 



More information about the geeklog-cvs mailing list