summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@controlyourself.ca>2009-04-07 21:09:27 +0000
committerSarven Capadisli <csarven@controlyourself.ca>2009-04-07 21:09:27 +0000
commita6e950b7a1ca7654613dd7f5cefcdae6a3a0f579 (patch)
treedf34246be8c7c62364f224abdb472f120f7a4490 /actions
parent5dfc09d9d265d1e2e918f9dd615f89909c6c4e74 (diff)
Renamed 'blankfiller' to 'guide'.
Diffstat (limited to 'actions')
-rw-r--r--actions/all.php2
-rw-r--r--actions/favorited.php2
-rw-r--r--actions/groupsearch.php2
-rw-r--r--actions/noticesearch.php2
-rw-r--r--actions/public.php2
-rw-r--r--actions/publictagcloud.php2
6 files changed, 6 insertions, 6 deletions
diff --git a/actions/all.php b/actions/all.php
index 5189f31f5..9c6182ccc 100644
--- a/actions/all.php
+++ b/actions/all.php
@@ -114,7 +114,7 @@ class AllAction extends Action
$message .= sprintf(_('Why not [register an account](%%%%action.register%%%%) and then nudge %s or post a notice to his or her attention.'), $this->user->nickname);
}
- $this->elementStart('div', 'blankfiller');
+ $this->elementStart('div', 'guide');
$this->raw(common_markup_to_html($message));
$this->elementEnd('div');
}
diff --git a/actions/favorited.php b/actions/favorited.php
index 20a354674..6935eda23 100644
--- a/actions/favorited.php
+++ b/actions/favorited.php
@@ -159,7 +159,7 @@ class FavoritedAction extends Action
$message .= _('Why not [register an account](%%action.register%%) and be the first to add a notice to your favorites!');
}
- $this->elementStart('div', 'blankfiller');
+ $this->elementStart('div', 'guide');
$this->raw(common_markup_to_html($message));
$this->elementEnd('div');
}
diff --git a/actions/groupsearch.php b/actions/groupsearch.php
index 31c4ffd94..06b4a7755 100644
--- a/actions/groupsearch.php
+++ b/actions/groupsearch.php
@@ -84,7 +84,7 @@ class GroupsearchAction extends SearchAction
else {
$message = _('Why not [register an account](%%action.register%%) and [create the group](%%action.newgroup%%) yourself!');
}
- $this->elementStart('div', 'blankfiller');
+ $this->elementStart('div', 'guide');
$this->raw(common_markup_to_html($message));
$this->elementEnd('div');
$user_group->free();
diff --git a/actions/noticesearch.php b/actions/noticesearch.php
index a4308450b..095d0a454 100644
--- a/actions/noticesearch.php
+++ b/actions/noticesearch.php
@@ -124,7 +124,7 @@ class NoticesearchAction extends SearchAction
$message = sprintf(_('Why not [register an account](%%%%action.register%%%%) and be the first to [post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!'), urlencode($q));
}
- $this->elementStart('div', 'blankfiller');
+ $this->elementStart('div', 'guide');
$this->raw(common_markup_to_html($message));
$this->elementEnd('div');
return;
diff --git a/actions/public.php b/actions/public.php
index 5a2720a9a..d64b651fd 100644
--- a/actions/public.php
+++ b/actions/public.php
@@ -188,7 +188,7 @@ class PublicAction extends Action
$message .= _('Why not [register an account](%%action.register%%) and be the first to post!');
}
- $this->elementStart('div', 'blankfiller');
+ $this->elementStart('div', 'guide');
$this->raw(common_markup_to_html($message));
$this->elementEnd('div');
}
diff --git a/actions/publictagcloud.php b/actions/publictagcloud.php
index 5bc7e0cbf..4ff41d2a6 100644
--- a/actions/publictagcloud.php
+++ b/actions/publictagcloud.php
@@ -77,7 +77,7 @@ class PublictagcloudAction extends Action
$message .= _('Why not [register an account](%%action.register%%) and be the first to post one!');
}
- $this->elementStart('div', 'blankfiller');
+ $this->elementStart('div', 'guide');
$this->raw(common_markup_to_html($message));
$this->elementEnd('div');
}