Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mahara
mahara
Commits
531180d1
Commit
531180d1
authored
Jan 18, 2007
by
Martyn Smith
Committed by
Martyn Smith
Jan 18, 2007
Browse files
more <title> tag work
parent
ac4db857
Changes
9
Show whitespace changes
Inline
Side-by-side
htdocs/contacts/communities/create.php
View file @
531180d1
...
...
@@ -27,9 +27,9 @@
define
(
'INTERNAL'
,
1
);
define
(
'MENUITEM'
,
'mycontacts'
);
define
(
'SUBMENUITEM'
,
'myownedcommunities'
);
require
(
dirname
(
dirname
(
dirname
(
__FILE__
)))
.
'/init.php'
);
require_once
(
'pieforms/pieform.php'
);
define
(
'TITLE'
,
get_string
(
'createcommunity'
));
$prefix
=
get_config
(
'dbprefix'
);
...
...
htdocs/contacts/communities/edit.php
View file @
531180d1
...
...
@@ -27,9 +27,9 @@
define
(
'INTERNAL'
,
1
);
define
(
'MENUITEM'
,
'mycontacts'
);
define
(
'SUBMENUITEM'
,
'myownedcommunities'
);
require
(
dirname
(
dirname
(
dirname
(
__FILE__
)))
.
'/init.php'
);
require_once
(
'pieforms/pieform.php'
);
define
(
'TITLE'
,
get_string
(
'editcommunity'
));
$id
=
param_integer
(
'id'
);
$prefix
=
get_config
(
'dbprefix'
);
...
...
htdocs/contacts/communities/owned.php
View file @
531180d1
...
...
@@ -27,8 +27,8 @@
define
(
'INTERNAL'
,
1
);
define
(
'MENUITEM'
,
'mycontacts'
);
define
(
'SUBMENUITEM'
,
'myownedcommunities'
);
require
(
dirname
(
dirname
(
dirname
(
__FILE__
)))
.
'/init.php'
);
define
(
'TITLE'
,
get_string
(
'myownedcommunities'
));
$viewurl
=
get_config
(
'wwwroot'
)
.
'contacts/communities/view.php?id='
;
$editurl
=
get_config
(
'wwwroot'
)
.
'contacts/communities/edit.php?id='
;
...
...
htdocs/contacts/groups/create.php
View file @
531180d1
...
...
@@ -27,9 +27,9 @@
define
(
'INTERNAL'
,
1
);
define
(
'MENUITEM'
,
'mycontacts'
);
define
(
'SUBMENUITEM'
,
'mygroups'
);
require
(
dirname
(
dirname
(
dirname
(
__FILE__
)))
.
'/init.php'
);
require_once
(
'pieforms/pieform.php'
);
define
(
'TITLE'
,
get_string
(
'creategroup'
));
$creategroup
=
pieform
(
array
(
'name'
=>
'creategroup'
,
...
...
htdocs/contacts/groups/edit.php
View file @
531180d1
...
...
@@ -27,9 +27,9 @@
define
(
'INTERNAL'
,
1
);
define
(
'MENUITEM'
,
'mycontacts'
);
define
(
'SUBMENUITEM'
,
'mygroups'
);
require
(
dirname
(
dirname
(
dirname
(
__FILE__
)))
.
'/init.php'
);
require_once
(
'pieforms/pieform.php'
);
define
(
'TITLE'
,
get_string
(
'editgroup'
));
$id
=
param_integer
(
'id'
,
null
);
...
...
htdocs/contacts/groups/index.php
View file @
531180d1
...
...
@@ -27,8 +27,8 @@
define
(
'INTERNAL'
,
1
);
define
(
'MENUITEM'
,
'mycontacts'
);
define
(
'SUBMENUITEM'
,
'mygroups'
);
require
(
dirname
(
dirname
(
dirname
(
__FILE__
)))
.
'/init.php'
);
define
(
'TITLE'
,
get_string
(
'mygroups'
));
$javascript
=
<<<JAVASCRIPT
var grouplist = new TableRenderer(
...
...
htdocs/contacts/index.php
View file @
531180d1
...
...
@@ -27,8 +27,8 @@
define
(
'INTERNAL'
,
1
);
define
(
'MENUITEM'
,
'mycontacts'
);
define
(
'SUBMENUITEM'
,
'myfriends'
);
require
(
dirname
(
dirname
(
__FILE__
))
.
'/init.php'
);
define
(
'TITLE'
,
get_string
(
'myfriends'
));
$wwwroot
=
get_config
(
'wwwroot'
);
$profileurl
=
$wwwroot
.
'thumb.php?type=user&id='
;
...
...
htdocs/json/quota.php
View file @
531180d1
...
...
@@ -25,6 +25,7 @@
*/
define
(
'INTERNAL'
,
1
);
define
(
'JSON'
,
1
);
require
(
dirname
(
dirname
(
__FILE__
))
.
'/init.php'
);
$result
=
array
();
...
...
htdocs/json/usersearch.php
View file @
531180d1
...
...
@@ -25,6 +25,7 @@
*/
define
(
'INTERNAL'
,
1
);
define
(
'JSON'
,
1
);
require
(
dirname
(
dirname
(
__FILE__
))
.
'/init.php'
);
require
(
'searchlib.php'
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment