summaryrefslogtreecommitdiff
path: root/modules/statistics/statistics.install
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-11-15 13:01:11 +0000
committerDries Buytaert <dries@buytaert.net>2008-11-15 13:01:11 +0000
commit15671f471b5097fd20c5951a9c835de9bb05fc5b (patch)
treeb3b22b4f670da5c6880cadb593eae285bf623995 /modules/statistics/statistics.install
parent97fdc491917f6f12d734cb13bf2101cfc12096fd (diff)
downloadbrdo-15671f471b5097fd20c5951a9c835de9bb05fc5b.tar.gz
brdo-15671f471b5097fd20c5951a9c835de9bb05fc5b.tar.bz2
- Patch #332123 by webchick, lilou: remove t() function from schema descriptions.
Diffstat (limited to 'modules/statistics/statistics.install')
-rw-r--r--modules/statistics/statistics.install20
1 files changed, 10 insertions, 10 deletions
diff --git a/modules/statistics/statistics.install b/modules/statistics/statistics.install
index 39aa5e48a..5366b0163 100644
--- a/modules/statistics/statistics.install
+++ b/modules/statistics/statistics.install
@@ -49,64 +49,64 @@ function statistics_uninstall() {
*/
function statistics_schema() {
$schema['accesslog'] = array(
- 'description' => t('Stores site access information for statistics.'),
+ 'description' => 'Stores site access information for statistics.',
'fields' => array(
'aid' => array(
'type' => 'serial',
'not null' => TRUE,
- 'description' => t('Primary Key: Unique accesslog ID.'),
+ 'description' => 'Primary Key: Unique accesslog ID.',
),
'sid' => array(
'type' => 'varchar',
'length' => 64,
'not null' => TRUE,
'default' => '',
- 'description' => t('Browser session ID of user that visited page.'),
+ 'description' => 'Browser session ID of user that visited page.',
),
'title' => array(
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
- 'description' => t('Title of page visited.'),
+ 'description' => 'Title of page visited.',
),
'path' => array(
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
- 'description' => t('Internal path to page visited (relative to Drupal root.)'),
+ 'description' => 'Internal path to page visited (relative to Drupal root.)',
),
'url' => array(
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
- 'description' => t('Referrer URI.'),
+ 'description' => 'Referrer URI.',
),
'hostname' => array(
'type' => 'varchar',
'length' => 128,
'not null' => FALSE,
- 'description' => t('Hostname of user that visited the page.'),
+ 'description' => 'Hostname of user that visited the page.',
),
'uid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => FALSE,
'default' => 0,
- 'description' => t('User {users}.uid that visited the page.'),
+ 'description' => 'User {users}.uid that visited the page.',
),
'timer' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
- 'description' => t('Time in milliseconds that the page took to load.'),
+ 'description' => 'Time in milliseconds that the page took to load.',
),
'timestamp' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
- 'description' => t('Timestamp of when the page was visited.'),
+ 'description' => 'Timestamp of when the page was visited.',
),
),
'indexes' => array(