diff options
Diffstat (limited to 'views')
| -rw-r--r-- | views/default/forms/profile/fields/add.php | 2 | ||||
| -rw-r--r-- | views/default/forms/user/passwordreset.php | 2 | ||||
| -rw-r--r-- | views/default/output/longtext.php | 2 | ||||
| -rw-r--r-- | views/default/page/elements/messages.php | 2 | ||||
| -rw-r--r-- | views/installation/install/pages/admin.php | 2 | ||||
| -rw-r--r-- | views/installation/install/pages/complete.php | 2 | ||||
| -rw-r--r-- | views/installation/install/pages/database.php | 4 | ||||
| -rw-r--r-- | views/installation/install/pages/requirements.php | 4 | ||||
| -rw-r--r-- | views/installation/install/pages/settings.php | 2 | ||||
| -rw-r--r-- | views/installation/install/pages/welcome.php | 2 | ||||
| -rw-r--r-- | views/installation/page/elements/messages.php | 2 | ||||
| -rw-r--r-- | views/opendd/messages/exceptions/exception.php | 2 | ||||
| -rw-r--r-- | views/rss/group/default.php | 4 | ||||
| -rw-r--r-- | views/rss/object/default.php | 2 | ||||
| -rw-r--r-- | views/rss/user/default.php | 2 | ||||
| -rw-r--r-- | views/xml/messages/exceptions/exception.php | 2 | 
16 files changed, 19 insertions, 19 deletions
diff --git a/views/default/forms/profile/fields/add.php b/views/default/forms/profile/fields/add.php index 1ea9c57a9..2087ec299 100644 --- a/views/default/forms/profile/fields/add.php +++ b/views/default/forms/profile/fields/add.php @@ -25,5 +25,5 @@ $formbody = <<< END  		$submit_control</div>  END; -echo autop(elgg_echo('profile:explainchangefields')); +echo elgg_autop(elgg_echo('profile:explainchangefields'));  echo $formbody; diff --git a/views/default/forms/user/passwordreset.php b/views/default/forms/user/passwordreset.php index 3c89776f6..5946fa7c0 100644 --- a/views/default/forms/user/passwordreset.php +++ b/views/default/forms/user/passwordreset.php @@ -3,7 +3,7 @@   * Reset user password form   */ -echo autop(elgg_echo('user:resetpassword:reset_password_confirm')); +echo elgg_autop(elgg_echo('user:resetpassword:reset_password_confirm'));  echo elgg_view('input/hidden', array(  	'name' => 'u', diff --git a/views/default/output/longtext.php b/views/default/output/longtext.php index 200f27de5..589100c4f 100644 --- a/views/default/output/longtext.php +++ b/views/default/output/longtext.php @@ -31,7 +31,7 @@ if ($parse_urls) {  $text = filter_tags($text); -$text = autop($text); +$text = elgg_autop($text);  $attributes = elgg_format_attributes($vars); diff --git a/views/default/page/elements/messages.php b/views/default/page/elements/messages.php index a35a48586..edd40d71e 100644 --- a/views/default/page/elements/messages.php +++ b/views/default/page/elements/messages.php @@ -18,7 +18,7 @@ if (isset($vars['object']) && is_array($vars['object']) && sizeof($vars['object'  	foreach ($vars['object'] as $type => $list ) {  		foreach ($list as $message) {  			echo "<li class=\"elgg-message elgg-state-$type\">"; -			echo autop($message); +			echo elgg_autop($message);  			echo '</li>';  		}  	} diff --git a/views/installation/install/pages/admin.php b/views/installation/install/pages/admin.php index 9456e682f..e810aa701 100644 --- a/views/installation/install/pages/admin.php +++ b/views/installation/install/pages/admin.php @@ -3,7 +3,7 @@   * Install create admin account page   */ -echo autop(elgg_echo('install:admin:instructions')); +echo elgg_autop(elgg_echo('install:admin:instructions'));  $vars['type'] = 'admin'; diff --git a/views/installation/install/pages/complete.php b/views/installation/install/pages/complete.php index 2f5a04854..80f8e7434 100644 --- a/views/installation/install/pages/complete.php +++ b/views/installation/install/pages/complete.php @@ -3,7 +3,7 @@   * Install completion page   */ -echo autop(elgg_echo('install:complete:instructions')); +echo elgg_autop(elgg_echo('install:complete:instructions'));  ?> diff --git a/views/installation/install/pages/database.php b/views/installation/install/pages/database.php index d3011c9e3..d24b4f57b 100644 --- a/views/installation/install/pages/database.php +++ b/views/installation/install/pages/database.php @@ -6,12 +6,12 @@   */  if (isset($vars['failure']) && $vars['failure']) { -	echo autop(elgg_echo('install:database:error')); +	echo elgg_autop(elgg_echo('install:database:error'));  	$vars['refresh'] = TRUE;  	$vars['advance'] = FALSE;  	echo elgg_view('install/nav', $vars);  } else { -	echo autop(elgg_echo('install:database:instructions')); +	echo elgg_autop(elgg_echo('install:database:instructions'));  	$vars['type'] = 'database'; diff --git a/views/installation/install/pages/requirements.php b/views/installation/install/pages/requirements.php index e3689e761..06f309c90 100644 --- a/views/installation/install/pages/requirements.php +++ b/views/installation/install/pages/requirements.php @@ -14,7 +14,7 @@ if ($vars['num_failures'] != 0) {  	$instruct_text = elgg_echo('install:requirements:instructions:success');  } -echo autop($instruct_text); +echo elgg_autop($instruct_text);  $report = $vars['report'];  foreach ($report as $category => $checks) { @@ -23,7 +23,7 @@ foreach ($report as $category => $checks) {  	echo "<ul class=\"elgg-require-$category\">";  	foreach ($checks as $check) {  		echo "<li class=\"{$check['severity']}\">"; -		echo autop($check['message']); +		echo elgg_autop($check['message']);  		echo "</li>";  	}  	echo "</ul>"; diff --git a/views/installation/install/pages/settings.php b/views/installation/install/pages/settings.php index 30a1deb5a..04f23c0ea 100644 --- a/views/installation/install/pages/settings.php +++ b/views/installation/install/pages/settings.php @@ -1,6 +1,6 @@  <?php -echo autop(elgg_echo('install:settings:instructions')); +echo elgg_autop(elgg_echo('install:settings:instructions'));  $vars['type'] = 'settings'; diff --git a/views/installation/install/pages/welcome.php b/views/installation/install/pages/welcome.php index f069e4ba7..f370c15f3 100644 --- a/views/installation/install/pages/welcome.php +++ b/views/installation/install/pages/welcome.php @@ -3,6 +3,6 @@   * Install welcome page   */ -echo autop(elgg_echo('install:welcome:instructions')); +echo elgg_autop(elgg_echo('install:welcome:instructions'));  echo elgg_view('install/nav', $vars); diff --git a/views/installation/page/elements/messages.php b/views/installation/page/elements/messages.php index 2a06a7b1e..46261dca4 100644 --- a/views/installation/page/elements/messages.php +++ b/views/installation/page/elements/messages.php @@ -12,7 +12,7 @@ if (isset($vars['object']) && is_array($vars['object']) && sizeof($vars['object'  	foreach ($vars['object'] as $type => $list ) {  		foreach ($list as $message) {  			echo "<li class=\"elgg-state-$type\">"; -			echo autop($message); +			echo elgg_autop($message);  			echo '</li>';  		}  	} diff --git a/views/opendd/messages/exceptions/exception.php b/views/opendd/messages/exceptions/exception.php index 54868f1f4..dc0f48a8d 100644 --- a/views/opendd/messages/exceptions/exception.php +++ b/views/opendd/messages/exceptions/exception.php @@ -11,7 +11,7 @@  ?>  <!-- -<?php echo get_class($vars['object']); ?>: <?php echo autop($vars['object']->getMessage()); ?> +<?php echo get_class($vars['object']); ?>: <?php echo elgg_autop($vars['object']->getMessage()); ?>  <?php if (elgg_get_config('debug')) { ?>  <?php  	echo print_r($vars['object'], true); diff --git a/views/rss/group/default.php b/views/rss/group/default.php index f57c7f82c..7fef4d434 100644 --- a/views/rss/group/default.php +++ b/views/rss/group/default.php @@ -11,9 +11,9 @@ $pubdate = date('r', $vars['entity']->getTimeCreated());  $title = htmlspecialchars($vars['entity']->name, ENT_NOQUOTES, 'UTF-8');  if ($vars['entity']->description) { -	$description = autop($vars['entity']->description); +	$description = elgg_autop($vars['entity']->description);  } elseif ($vars['entity']->briefdescription) { -	$description = autop($vars['entity']->briefdescription); +	$description = elgg_autop($vars['entity']->briefdescription);  } else {  	$description = '';  } diff --git a/views/rss/object/default.php b/views/rss/object/default.php index be8025953..8c7d5d8e0 100644 --- a/views/rss/object/default.php +++ b/views/rss/object/default.php @@ -15,7 +15,7 @@ if (empty($title)) {  $permalink = htmlspecialchars($vars['entity']->getURL(), ENT_NOQUOTES, 'UTF-8');  $pubdate = date('r', $vars['entity']->getTimeCreated()); -$description = autop($vars['entity']->description); +$description = elgg_autop($vars['entity']->description);  $creator = elgg_view('page/components/creator', $vars);  $georss = elgg_view('page/components/georss', $vars); diff --git a/views/rss/user/default.php b/views/rss/user/default.php index 1c7bf75e7..92c9427b2 100644 --- a/views/rss/user/default.php +++ b/views/rss/user/default.php @@ -11,7 +11,7 @@ $pubdate = date('r', $vars['entity']->getTimeCreated());  $title = htmlspecialchars($vars['entity']->name, ENT_NOQUOTES, 'UTF-8');  if ($vars['entity']->description) { -	$description = autop($vars['entity']->description); +	$description = elgg_autop($vars['entity']->description);  } else {  	$description = '';  } diff --git a/views/xml/messages/exceptions/exception.php b/views/xml/messages/exceptions/exception.php index 3e4e1c376..66a0f2b96 100644 --- a/views/xml/messages/exceptions/exception.php +++ b/views/xml/messages/exceptions/exception.php @@ -11,7 +11,7 @@  ?>  <!-- -<?php echo get_class($vars['object']); ?>: <?php echo autop($vars['object']->getMessage()); ?> +<?php echo get_class($vars['object']); ?>: <?php echo elgg_autop($vars['object']->getMessage()); ?>  <?php if (elgg_get_config('debug')) { ?>  | 
