repo.or.cz
/
akelos.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixing content type ordering when content_type is not defined.
[akelos.git]
/
test
/
fixtures
/
app
/
models
/
tag.php
blob
28fc74082cb3908e7eaf899fb84f6c4f02c1460b
1
<
?php
2
3
class
Tag
extends
AkActiveRecord
4
{
5
var
$habtm
=
array
(
6
'files'
=>
array
(
7
'join_table'
=>
'taggings'
,
8
'join_class_name'
=>
'Tagging'
9
),
10
'posts'
11
);
12
13
var
$has_many
=
'taggings'
;
14
}
15
16
?
>