Bläddra i källkod

Fix overlooked i18n calls

Chris J. Lebron 13 år sedan
förälder
incheckning
e3df1c5116
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      functions.php

+ 2 - 2
functions.php

@@ -148,9 +148,9 @@ function bones_comments($comment, $args, $depth) {
 // Search Form
 function bones_wpsearch($form) {
     $form = '<form role="search" method="get" id="searchform" action="' . home_url( '/' ) . '" >
-    <label class="screen-reader-text" for="s">' . _e('Search for:', 'bonestheme') . '</label>
+    <label class="screen-reader-text" for="s">' . __('Search for:', 'bonestheme') . '</label>
     <input type="text" value="' . get_search_query() . '" name="s" id="s" placeholder="Search the Site..." />
-    <input type="submit" id="searchsubmit" value="'. esc_attr_e('Search') .'" />
+    <input type="submit" id="searchsubmit" value="'. esc_attr__('Search') .'" />
     </form>';
     return $form;
 } // don't remove this bracket!