X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fextensions%2Fext-online.php;h=87f58aa9d3e3d8bc81a218cab76229d5a42e18bc;hb=508228c85fba8448d00865b1639cb8cd7a69e457;hp=3ef81f3122a16404f710af089debd126f2a9bca7;hpb=ee71bda9cc7d75f090ae2e1a2d05d4903523e112;p=mailer.git diff --git a/inc/extensions/ext-online.php b/inc/extensions/ext-online.php index 3ef81f3122..87f58aa9d3 100644 --- a/inc/extensions/ext-online.php +++ b/inc/extensions/ext-online.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Wer befindet sich wo gerade Online? * * -------------------------------------------------------------------- * - * * + * $Revision:: 856 $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -62,7 +67,8 @@ is_member ENUM('Y','N') NOT NULL DEFAULT 'N', timestamp VARCHAR(10) NOT NULL DEFAULT 0, PRIMARY KEY(id), KEY(userid), -KEY(refid) +KEY(refid), +KEY `admin_member` (`is_admin`,`is_member`) ) TYPE={!_TABLE_TYPE!}"); ADD_SQL("INSERT INTO `{!_MYSQL_PREFIX!}_admin_menu` (`action`,`what`,`title`,`descr`,`sort`) VALUES ('misc','usr_online','Online-Statistik','Eine Liste von derzeit "Online" Usern. Doppelte Einträge könnte auf mangelnden Cookie-Support des Browsers oder auf einen Spider hindeuten.', 1)"); break; @@ -122,6 +128,9 @@ case "update": // Update an extension } break; +case "modify": // When the extension got modified + break; + case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305. break;