From 37661527e7c91983c9efcca29f5ddb3cd805fed3 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 8 Oct 2005 04:20:52 +0000 Subject: [PATCH] Removing @see declarations --- date.php | 1 - db_mysql.php | 7 ------- functions.php | 4 ---- kernel.php | 6 ------ mail.php | 5 ----- template.php | 10 ---------- template_fs.php | 2 -- xml.php | 2 -- 8 files changed, 37 deletions(-) diff --git a/date.php b/date.php index f7cf3b7..14dc7d9 100644 --- a/date.php +++ b/date.php @@ -65,7 +65,6 @@ class Date_Formatter /** * Total offset timezone * @var integer - * @see fetch_offset() */ var $offsettz = 0; diff --git a/db_mysql.php b/db_mysql.php index 747b10b..89e356b 100644 --- a/db_mysql.php +++ b/db_mysql.php @@ -47,49 +47,42 @@ class MySQL_Database_Driver /** * Database that is used in the application * @var string - * @see connect() */ var $database = ''; /** * Determines whether or not errors should be shown * @var bool - * @see error() */ var $errshow = true; /** * Current error number * @var integer - * @see error() */ var $error_no = 0; /** * Description of current error * @var string - * @see error() */ var $error_str = ''; /** * Currend open MySQL connexion * @var resource - * @see connect() */ var $link_id = null; /** * Current query ID * @var integer - * @see query() */ var $query_id = null; /** * Current query string * @var string - * @see query() */ var $query_str = ''; diff --git a/functions.php b/functions.php index 639ab94..a954ed8 100644 --- a/functions.php +++ b/functions.php @@ -47,28 +47,24 @@ class Functions /** * The path that is used to set cookies * @var string - * @see cookie() */ var $cookiepath = '/'; /** * The domain used for cookie setting * @var string - * @see cookie() */ var $cookiedom = ''; /** * The time it takes for a cookie to expire * @var integer - * @see cookie() */ var $cookieexp = 900; /** * State of the current background colour during alternation * @var string - * @see exec_swap_bg() */ var $bgcolour = ''; diff --git a/kernel.php b/kernel.php index 2143afc..33c67f8 100644 --- a/kernel.php +++ b/kernel.php @@ -110,7 +110,6 @@ class Shared_Object_Framework /** * Location of ISSO, used for internal linking * @var string - * @see fetch_sourcepath() */ var $sourcepath = ''; @@ -141,35 +140,30 @@ class Shared_Object_Framework /** * List of all active debug messages * @var array - * @see debug() */ var $debuginfo = array(); /** * List of loaded modules * @var array - * @see show_modules() */ var $modules = array(); /** * An array of sanitized variables that have been cleaned for HTML tag openers and double quotes * @var array - * @see sanitize() */ var $in = array(); /** * If we are running with magic_quotes_gpc on or off * @var int - * @see escape(), exec_sanitize_data() */ var $magicquotes = 0; /** * If we should automagically escape strings, mimicking magic_quotes_gpc * @var bool - * @see exec_sanitize_data() */ var $escapestrings = false; diff --git a/mail.php b/mail.php index 46896e4..20df43a 100644 --- a/mail.php +++ b/mail.php @@ -47,35 +47,30 @@ class Mail /** * The message recipient's email address * @var string - * @see send() */ var $to = ''; /** * The subject of the message * @var string - * @see send() */ var $subject = ''; /** * Body of the message * @var string - * @see send() */ var $body = ''; /** * The message sender's email address * @var string - * @see send() */ var $from = ''; /** * The message sender's display name * @var string - * @see send() */ var $fromname = ''; diff --git a/template.php b/template.php index c4266a4..d21d6f6 100644 --- a/template.php +++ b/template.php @@ -47,70 +47,60 @@ class DB_Template /** * Name of the database table templates are in * @var string - * @see _load() */ var $templatetable = ''; /** * Name of the table column template names are in * @var string - * @see $templatetable, _load() */ var $namecolumn = ''; /** * Name of the table column templates are in * @var string - * @see templatetable, _load() */ var $datacolumn = ''; /** * Additional WHERE clauses for the template fetch SQL * @var string - * @see _load(), cache() */ var $extrawhere = ''; /** * The name of the function phrases are fetched with * @var string - * @see _parse_phrases() */ var $langcall = '$GLOBALS[\'_isso\']->lang->string'; /** * The name of the function phrases are sprintf() parsed with * @var string - * @see _parse_phrases() */ var $langconst = 'sprintf'; /** * Array of pre-compiled templates that are stored to decrease server load * @var array - * @see cache() */ var $cache = array(); /** * A list of the number of times each template has been used * @var array - * @see fetch() */ var $usage = array(); /** * A list of templates that weren't cached, but are still used * @var array - * @see fetch() */ var $uncached = array(); /** * Whether or not the page has been flush()'d already * @var bool - * @see flush() */ var $doneflush = false; diff --git a/template_fs.php b/template_fs.php index da34848..0e5ad84 100644 --- a/template_fs.php +++ b/template_fs.php @@ -52,14 +52,12 @@ class FS_Template extends DB_Template /** * The path, from the path of the application, where templates are stored * @var string - * @see Shared_Object_Framework::$apppath, _load() */ var $templatedir = ''; /** * The extension all the template files have * @var string - * @see _load() */ var $extension = 'tpl'; diff --git a/xml.php b/xml.php index 338ef0f..e50038e 100644 --- a/xml.php +++ b/xml.php @@ -46,14 +46,12 @@ class XML_Parser /** * Parser resource * @var integer - * @see parse() */ var $parser = null; /** * An array of function names that are to be executed for each tag name (name => function) * @var array() - * @see parse() */ var $taghandler = array(); -- 2.43.5